Fixed dupe bug with External Storage connected to an item handler, fixes #1407

This commit is contained in:
raoulvdberge
2017-08-09 20:20:20 +02:00
parent 9bea0a4f82
commit 3ac2afcb02
2 changed files with 2 additions and 1 deletions

View File

@@ -11,6 +11,7 @@
- Fixed External Storage not working without Storage Drawers (raoulvdberge)
- Fixed External Storage not calculating max stack size in the calculation of it's capacity display in the GUI (raoulvdberge)
- Fixed Refined Storage not drawing small text correctly with Unicode font (raoulvdberge)
- Fixed dupe bug with External Storage connected to an item handler (raoulvdberge)
### 1.5.14
- Updated Forge to 2426 (raoulvdberge)

View File

@@ -104,7 +104,7 @@ public class StorageItemItemHandler extends StorageItemExternal {
if (!got.isEmpty()) {
if (received == null) {
received = got;
received = got.copy();
} else {
received.grow(got.getCount());
}