Fix Blood Letter's Pack and Coat of Arms passing the wrong hand (#1582)
This commit is contained in:
parent
f832103386
commit
eec64695b5
|
@ -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());
|
||||
}
|
||||
|
|
|
@ -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());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue