diff --git a/CHANGELOG.md b/CHANGELOG.md index bc692d983..79d2be6a4 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ### 1.3.5 - Fixed Controller not using energy (raoulvdberge) - Fixed dupe bug when inserting bucket in Fluid Grid (raoulvdberge) +- Fixed not being able to start autocrafting for storage disks (raoulvdberge) - Added regulator mode to Exporter (InusualZ) ### 1.3.4 diff --git a/src/main/java/com/raoulvdberge/refinedstorage/apiimpl/storage/StorageFluidNBT.java b/src/main/java/com/raoulvdberge/refinedstorage/apiimpl/storage/StorageFluidNBT.java index f1fea8b3d..408eb1722 100755 --- a/src/main/java/com/raoulvdberge/refinedstorage/apiimpl/storage/StorageFluidNBT.java +++ b/src/main/java/com/raoulvdberge/refinedstorage/apiimpl/storage/StorageFluidNBT.java @@ -224,6 +224,7 @@ public abstract class StorageFluidNBT implements IStorage { otherTag.setInteger(NBT_STORED, getStoredFromNBT(tag)); otherTag.setTag(NBT_FLUIDS, new NBTTagList()); // To circumvent not being able to insert disks in Disk Drives (see FluidStorageNBT#isValid(ItemStack)). + otherTag.setInteger(NBT_PROTOCOL, PROTOCOL); return otherTag; } diff --git a/src/main/java/com/raoulvdberge/refinedstorage/apiimpl/storage/StorageItemNBT.java b/src/main/java/com/raoulvdberge/refinedstorage/apiimpl/storage/StorageItemNBT.java index dd04ebdb2..177069427 100755 --- a/src/main/java/com/raoulvdberge/refinedstorage/apiimpl/storage/StorageItemNBT.java +++ b/src/main/java/com/raoulvdberge/refinedstorage/apiimpl/storage/StorageItemNBT.java @@ -260,6 +260,7 @@ public abstract class StorageItemNBT implements IStorage { otherTag.setInteger(NBT_STORED, getStoredFromNBT(tag)); otherTag.setTag(NBT_ITEMS, new NBTTagList()); // To circumvent not being able to insert disks in Disk Drives (see ItemStorageNBT#isValid(ItemStack)). + otherTag.setInteger(NBT_PROTOCOL, PROTOCOL); return otherTag; }