From 005e523e24cfd121167aa489f4b72391dea64083 Mon Sep 17 00:00:00 2001 From: raoulvdberge Date: Thu, 27 Apr 2017 21:47:20 +0200 Subject: [PATCH] Update Forge and JEI --- CHANGELOG.md | 1 + build.gradle | 6 +++--- .../network/node/externalstorage/StorageItemExternal.java | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cff9be574..8f7c3709e 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Refined Storage Changelog ### 1.4.4 +- Updated Forge to 2284 (raoulvdberge) - Fixed Disk Manipulator crashing due to empty stack (raoulvdberge) - Fixed issue where empty stacks show up in the system (raoulvdberge) - Fixed Storage Monitor not respecting security settings (raoulvdberge) diff --git a/build.gradle b/build.gradle index dce9874c3..f57b9c7b8 100755 --- a/build.gradle +++ b/build.gradle @@ -28,7 +28,7 @@ sourceCompatibility = 1.8 targetCompatibility = 1.8 minecraft { - version = "1.11.2-13.20.0.2282" + version = "1.11.2-13.20.0.2284" runDir = "run" useDepAts = true mappings = "snapshot_20170401" @@ -51,8 +51,8 @@ repositories { } dependencies { - deobfCompile "mezz.jei:jei_1.11.2:4.3.3.266:api" - runtime "mezz.jei:jei_1.11.2:4.3.3.266" + deobfCompile "mezz.jei:jei_1.11.2:4.3.3.269:api" + runtime "mezz.jei:jei_1.11.2:4.3.3.269" deobfCompile "net.darkhax.tesla:Tesla:1.11-1.3.0.51" deobfCompile "org.cyclops.cyclopscore:CyclopsCore:1.11.2-0.10.0-516" deobfCompile "org.cyclops.commoncapabilities:CommonCapabilities:1.11.2-1.3.1-95" diff --git a/src/main/java/com/raoulvdberge/refinedstorage/apiimpl/network/node/externalstorage/StorageItemExternal.java b/src/main/java/com/raoulvdberge/refinedstorage/apiimpl/network/node/externalstorage/StorageItemExternal.java index 31ca42468..b0c778ac7 100755 --- a/src/main/java/com/raoulvdberge/refinedstorage/apiimpl/network/node/externalstorage/StorageItemExternal.java +++ b/src/main/java/com/raoulvdberge/refinedstorage/apiimpl/network/node/externalstorage/StorageItemExternal.java @@ -32,7 +32,7 @@ public abstract class StorageItemExternal implements IStorage { for (int i = 0; i < newStacks.size(); ++i) { ItemStack actual = newStacks.get(i); - // If we exceed the cache size, than that means this items is added + // If we exceed the cache size, than that means this item is added if (i >= cache.size()) { if (!actual.isEmpty()) { network.getItemStorageCache().add(actual, actual.getCount(), false);