Fix NPE when setting position of Teleposition Focus (#609)

This commit is contained in:
Nick 2016-02-12 12:49:32 -08:00
parent bb106e84ef
commit 0828e965c6

View file

@ -98,6 +98,7 @@ public class ItemTelepositionFocus extends ItemBindable
public ItemStack setBlockPos(ItemStack stack, World world, BlockPos pos)
{
stack = NBTHelper.checkNBT(stack);
NBTTagCompound itemTag = stack.getTagCompound();
itemTag.setInteger(Constants.NBT.X_COORD, pos.getX());
itemTag.setInteger(Constants.NBT.Y_COORD, pos.getY());