diff --git a/src/main/java/WayofTime/bloodmagic/item/gear/ItemPackSacrifice.java b/src/main/java/WayofTime/bloodmagic/item/gear/ItemPackSacrifice.java index 2033e618..9c01900b 100644 --- a/src/main/java/WayofTime/bloodmagic/item/gear/ItemPackSacrifice.java +++ b/src/main/java/WayofTime/bloodmagic/item/gear/ItemPackSacrifice.java @@ -44,13 +44,13 @@ public class ItemPackSacrifice extends ItemArmor implements IAltarManipulator, I RayTraceResult rayTrace = this.rayTrace(world, player, false); if (rayTrace == null) { - return super.onItemRightClick(world, player, EnumHand.MAIN_HAND); + return super.onItemRightClick(world, player, hand); } else { if (rayTrace.typeOfHit == RayTraceResult.Type.BLOCK) { TileEntity tile = world.getTileEntity(rayTrace.getBlockPos()); if (!(tile instanceof IBloodAltar)) - return super.onItemRightClick(world, player, EnumHand.MAIN_HAND); + return super.onItemRightClick(world, player, hand); LPContainer.tryAndFillAltar((IBloodAltar) tile, stack, world, rayTrace.getBlockPos()); } diff --git a/src/main/java/WayofTime/bloodmagic/item/gear/ItemPackSelfSacrifice.java b/src/main/java/WayofTime/bloodmagic/item/gear/ItemPackSelfSacrifice.java index 15508082..cc15fe1f 100644 --- a/src/main/java/WayofTime/bloodmagic/item/gear/ItemPackSelfSacrifice.java +++ b/src/main/java/WayofTime/bloodmagic/item/gear/ItemPackSelfSacrifice.java @@ -60,13 +60,13 @@ public class ItemPackSelfSacrifice extends ItemArmor implements IAltarManipulato RayTraceResult position = this.rayTrace(world, player, false); if (position == null) { - return super.onItemRightClick(world, player, EnumHand.MAIN_HAND); + return super.onItemRightClick(world, player, hand); } else { if (position.typeOfHit == RayTraceResult.Type.BLOCK) { TileEntity tile = world.getTileEntity(position.getBlockPos()); if (!(tile instanceof IBloodAltar)) - return super.onItemRightClick(world, player, EnumHand.MAIN_HAND); + return super.onItemRightClick(world, player, hand); LPContainer.tryAndFillAltar((IBloodAltar) tile, stack, world, position.getBlockPos()); }