Fixed dupe bug with External Storage connected to an item handler, fixes #1407
This commit is contained in:
@@ -11,6 +11,7 @@
|
|||||||
- Fixed External Storage not working without Storage Drawers (raoulvdberge)
|
- 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 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 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
|
### 1.5.14
|
||||||
- Updated Forge to 2426 (raoulvdberge)
|
- Updated Forge to 2426 (raoulvdberge)
|
||||||
|
@@ -104,7 +104,7 @@ public class StorageItemItemHandler extends StorageItemExternal {
|
|||||||
|
|
||||||
if (!got.isEmpty()) {
|
if (!got.isEmpty()) {
|
||||||
if (received == null) {
|
if (received == null) {
|
||||||
received = got;
|
received = got.copy();
|
||||||
} else {
|
} else {
|
||||||
received.grow(got.getCount());
|
received.grow(got.getCount());
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user