This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
### 1.4.4
|
### 1.4.4
|
||||||
- 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)
|
||||||
|
|
||||||
### 1.4.3
|
### 1.4.3
|
||||||
- Updated Forge to 2282 (raoulvdberge)
|
- Updated Forge to 2282 (raoulvdberge)
|
||||||
|
@@ -34,7 +34,7 @@ public abstract class StorageItemExternal implements IStorage<ItemStack> {
|
|||||||
|
|
||||||
// If we exceed the cache size, than that means this items is added
|
// If we exceed the cache size, than that means this items is added
|
||||||
if (i >= cache.size()) {
|
if (i >= cache.size()) {
|
||||||
if (actual != null) {
|
if (!actual.isEmpty()) {
|
||||||
network.getItemStorageCache().add(actual, actual.getCount(), false);
|
network.getItemStorageCache().add(actual, actual.getCount(), false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user