Skip to content

Commit

Permalink
fix sandman a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
sisby-folk committed Dec 29, 2023
1 parent 79812b9 commit d836019
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main/java/folk/sisby/starcaller/item/StardustItem.java
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,12 @@ private void tick(ItemStack stack, World world) {
}

@Override
public void blockInventoryTick(ItemStack stack, World world, BlockPos pos, int slot) {
public void inventoryTick(ItemStack stack, World world, Entity entity, int slot, boolean selected) {
tick(stack, world);
}

@Override
public void entityInventoryTick(ItemStack stack, World world, Entity entity, int slot, boolean selected) {
TicksAlwaysItem.super.entityInventoryTick(stack, world, entity, slot, selected);
public void blockInventoryTick(ItemStack stack, World world, BlockPos pos, int slot) {
tick(stack, world);
}
}

0 comments on commit d836019

Please sign in to comment.