Update Forge and JEI

This commit is contained in:
raoulvdberge
2017-04-27 21:47:20 +02:00
parent 1844c8c898
commit 005e523e24
3 changed files with 5 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
# Refined Storage Changelog # Refined Storage Changelog
### 1.4.4 ### 1.4.4
- Updated Forge to 2284 (raoulvdberge)
- Fixed Disk Manipulator crashing due to empty stack (raoulvdberge) - Fixed Disk Manipulator crashing due to empty stack (raoulvdberge)
- Fixed issue where empty stacks show up in the system (raoulvdberge) - Fixed issue where empty stacks show up in the system (raoulvdberge)
- Fixed Storage Monitor not respecting security settings (raoulvdberge) - Fixed Storage Monitor not respecting security settings (raoulvdberge)

View File

@@ -28,7 +28,7 @@ sourceCompatibility = 1.8
targetCompatibility = 1.8 targetCompatibility = 1.8
minecraft { minecraft {
version = "1.11.2-13.20.0.2282" version = "1.11.2-13.20.0.2284"
runDir = "run" runDir = "run"
useDepAts = true useDepAts = true
mappings = "snapshot_20170401" mappings = "snapshot_20170401"
@@ -51,8 +51,8 @@ repositories {
} }
dependencies { dependencies {
deobfCompile "mezz.jei:jei_1.11.2:4.3.3.266:api" deobfCompile "mezz.jei:jei_1.11.2:4.3.3.269:api"
runtime "mezz.jei:jei_1.11.2:4.3.3.266" runtime "mezz.jei:jei_1.11.2:4.3.3.269"
deobfCompile "net.darkhax.tesla:Tesla:1.11-1.3.0.51" 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.cyclopscore:CyclopsCore:1.11.2-0.10.0-516"
deobfCompile "org.cyclops.commoncapabilities:CommonCapabilities:1.11.2-1.3.1-95" deobfCompile "org.cyclops.commoncapabilities:CommonCapabilities:1.11.2-1.3.1-95"

View File

@@ -32,7 +32,7 @@ public abstract class StorageItemExternal implements IStorage<ItemStack> {
for (int i = 0; i < newStacks.size(); ++i) { for (int i = 0; i < newStacks.size(); ++i) {
ItemStack actual = newStacks.get(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 (i >= cache.size()) {
if (!actual.isEmpty()) { if (!actual.isEmpty()) {
network.getItemStorageCache().add(actual, actual.getCount(), false); network.getItemStorageCache().add(actual, actual.getCount(), false);