From eec64695b5e0f21d3df237aee07d8be628d4bd9c Mon Sep 17 00:00:00 2001 From: Nicholas Ignoffo Date: Sun, 14 Apr 2019 08:28:46 -0700 Subject: [PATCH] Fix Blood Letter's Pack and Coat of Arms passing the wrong hand (#1582) --- .../WayofTime/bloodmagic/item/gear/ItemPackSacrifice.java | 4 ++-- .../WayofTime/bloodmagic/item/gear/ItemPackSelfSacrifice.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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()); }