From f4c9fbc005556b36eb186dd8a33d883b8bc18d97 Mon Sep 17 00:00:00 2001 From: Raoul Van den Berge Date: Tue, 29 Nov 2016 20:48:42 +0100 Subject: [PATCH] Fixed #686 - "Disk Drive and Storage Disk issue in server environment." --- .../refinedstorage/apiimpl/storage/fluid/FluidStorageNBT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/raoulvdberge/refinedstorage/apiimpl/storage/fluid/FluidStorageNBT.java b/src/main/java/com/raoulvdberge/refinedstorage/apiimpl/storage/fluid/FluidStorageNBT.java index 42854199c..f0fd32bcb 100755 --- a/src/main/java/com/raoulvdberge/refinedstorage/apiimpl/storage/fluid/FluidStorageNBT.java +++ b/src/main/java/com/raoulvdberge/refinedstorage/apiimpl/storage/fluid/FluidStorageNBT.java @@ -198,7 +198,7 @@ public abstract class FluidStorageNBT implements IFluidStorage { NBTTagCompound otherTag = new NBTTagCompound(); 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; }