Update Forge and JEI
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -32,7 +32,7 @@ public abstract class StorageItemExternal implements IStorage<ItemStack> {
|
||||
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);
|
||||
|
||||
Reference in New Issue
Block a user