stop the storage crate from syncing its nbt

This commit is contained in:
Ellpeck 2017-03-10 22:57:24 +01:00
parent 8697faac25
commit a20116a9fd

View file

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