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

@@ -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());
}