Stop the storage crate from syncing its NBT

Closes #586
This commit is contained in:
Ellpeck 2017-01-21 13:12:28 +01:00
parent 8310617bef
commit 3c07f4535d

View file

@ -186,5 +186,10 @@ public class BlockGiantChest extends BlockContainerBase{
tooltip.add(TextFormatting.ITALIC+"'Small'");
}
}
@Override
public NBTTagCompound getNBTShareTag(ItemStack stack){
return null;
}
}
}