Fix NPE when setting position of Teleposition Focus (#609)
This commit is contained in:
parent
bb106e84ef
commit
0828e965c6
|
@ -98,6 +98,7 @@ public class ItemTelepositionFocus extends ItemBindable
|
||||||
|
|
||||||
public ItemStack setBlockPos(ItemStack stack, World world, BlockPos pos)
|
public ItemStack setBlockPos(ItemStack stack, World world, BlockPos pos)
|
||||||
{
|
{
|
||||||
|
stack = NBTHelper.checkNBT(stack);
|
||||||
NBTTagCompound itemTag = stack.getTagCompound();
|
NBTTagCompound itemTag = stack.getTagCompound();
|
||||||
itemTag.setInteger(Constants.NBT.X_COORD, pos.getX());
|
itemTag.setInteger(Constants.NBT.X_COORD, pos.getX());
|
||||||
itemTag.setInteger(Constants.NBT.Y_COORD, pos.getY());
|
itemTag.setInteger(Constants.NBT.Y_COORD, pos.getY());
|
||||||
|
|
Loading…
Reference in a new issue