Fixes issue #210 "Dupe bug in crafting grid"
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
# Refined Storage Changelog
|
||||
|
||||
### 0.8.12
|
||||
**Bugfixes**
|
||||
- Fixed dupe bug when shift clicking output slot in grid
|
||||
|
||||
### 0.8.11
|
||||
**Bugfixes**
|
||||
- Fixed minor dupe bug with JEI transferring
|
||||
|
||||
@@ -96,12 +96,14 @@ public class ContainerGrid extends ContainerBase {
|
||||
if (!player.worldObj.isRemote) {
|
||||
Slot slot = inventorySlots.get(slotIndex);
|
||||
|
||||
if (slot == craftingResultSlot) {
|
||||
((TileGrid) grid).onCraftedShift(this, player);
|
||||
} else if (grid.getGridHandler() != null && slot != patternResultSlot && !(slot instanceof SlotSpecimenLegacy) && slot.getHasStack()) {
|
||||
slot.putStack(grid.getGridHandler().onInsert(slot.getStack()));
|
||||
if (slot.getHasStack()) {
|
||||
if (slot == craftingResultSlot) {
|
||||
((TileGrid) grid).onCraftedShift(this, player);
|
||||
} else if (grid.getGridHandler() != null && slot != patternResultSlot && !(slot instanceof SlotSpecimenLegacy)) {
|
||||
slot.putStack(grid.getGridHandler().onInsert(slot.getStack()));
|
||||
|
||||
detectAndSendChanges();
|
||||
detectAndSendChanges();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user