Fixed #686 - "Disk Drive and Storage Disk issue in server environment."

This commit is contained in:
Raoul Van den Berge
2016-11-29 20:48:42 +01:00
parent 63ada28240
commit f4c9fbc005

View File

@@ -198,7 +198,7 @@ public abstract class FluidStorageNBT implements IFluidStorage {
NBTTagCompound otherTag = new NBTTagCompound(); NBTTagCompound otherTag = new NBTTagCompound();
otherTag.setInteger(NBT_STORED, getStoredFromNBT(tag)); otherTag.setInteger(NBT_STORED, getStoredFromNBT(tag));
otherTag.setTag(NBT_FLUIDS, new NBTTagList()); otherTag.setTag(NBT_FLUIDS, new NBTTagList()); // To circumvent not being able to insert disks in Disk Drives (see FluidStorageNBT#isValid(ItemStack)).
return otherTag; return otherTag;
} }