Fix Blood Letter's Pack and Coat of Arms passing the wrong hand (#1582)

This commit is contained in:
Nicholas Ignoffo 2019-04-14 08:28:46 -07:00
parent f832103386
commit eec64695b5
2 changed files with 4 additions and 4 deletions

View file

@ -44,13 +44,13 @@ public class ItemPackSacrifice extends ItemArmor implements IAltarManipulator, I
RayTraceResult rayTrace = this.rayTrace(world, player, false); RayTraceResult rayTrace = this.rayTrace(world, player, false);
if (rayTrace == null) { if (rayTrace == null) {
return super.onItemRightClick(world, player, EnumHand.MAIN_HAND); return super.onItemRightClick(world, player, hand);
} else { } else {
if (rayTrace.typeOfHit == RayTraceResult.Type.BLOCK) { if (rayTrace.typeOfHit == RayTraceResult.Type.BLOCK) {
TileEntity tile = world.getTileEntity(rayTrace.getBlockPos()); TileEntity tile = world.getTileEntity(rayTrace.getBlockPos());
if (!(tile instanceof IBloodAltar)) 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()); LPContainer.tryAndFillAltar((IBloodAltar) tile, stack, world, rayTrace.getBlockPos());
} }

View file

@ -60,13 +60,13 @@ public class ItemPackSelfSacrifice extends ItemArmor implements IAltarManipulato
RayTraceResult position = this.rayTrace(world, player, false); RayTraceResult position = this.rayTrace(world, player, false);
if (position == null) { if (position == null) {
return super.onItemRightClick(world, player, EnumHand.MAIN_HAND); return super.onItemRightClick(world, player, hand);
} else { } else {
if (position.typeOfHit == RayTraceResult.Type.BLOCK) { if (position.typeOfHit == RayTraceResult.Type.BLOCK) {
TileEntity tile = world.getTileEntity(position.getBlockPos()); TileEntity tile = world.getTileEntity(position.getBlockPos());
if (!(tile instanceof IBloodAltar)) 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()); LPContainer.tryAndFillAltar((IBloodAltar) tile, stack, world, position.getBlockPos());
} }