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);
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());
}

View file

@ -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());
}