Update ContainerMachineArcFurnaceLarge.java

This commit is contained in:
R-Kaenbyou 2025-08-23 20:42:15 -07:00 committed by GitHub
parent 0a99397f30
commit 13b3988829
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -65,11 +65,12 @@ public class ContainerMachineArcFurnaceLarge extends Container {
} else if(rStack.getItem() instanceof ItemMachineUpgrade) { } else if(rStack.getItem() instanceof ItemMachineUpgrade) {
if(!InventoryUtil.mergeItemStack(this.inventorySlots, stack, 4, 5, false)) return null; if(!InventoryUtil.mergeItemStack(this.inventorySlots, stack, 4, 5, false)) return null;
} else { } else {
if(!InventoryUtil.mergeItemStack(this.inventorySlots, stack, 5, 25, false)) return null; stack = furnace.distributeInput(stack, true);
if(stack != null && stack.stackSize == rStack.stackSize) return null;
} }
} }
if(stack.stackSize == 0) { if(stack == null || stack.stackSize == 0) {
slot.putStack((ItemStack) null); slot.putStack((ItemStack) null);
} else { } else {
slot.onSlotChanged(); slot.onSlotChanged();