Swap places of input and output slots in matter decomposer

This commit is contained in:
DBotThePony 2022-09-04 16:28:09 +07:00
parent de90c2e3da
commit 0eb24460e4
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -21,11 +21,11 @@ class MatterDecomposerScreen(p_97741_: MatterDecomposerMenu, p_97742_: Inventory
BatterySlotPanel(this, frame, menu.batterySlot, LEFT_MARGIN, SLOT_TOP_UNDER_GAUGE)
SlotPanel(this, frame, menu.input, 56f, PROGRESS_SLOT_TOP)
ProgressGaugePanel(this, frame, menu.progressWidget, 78f, PROGRESS_ARROW_TOP)
SlotPanel(this, frame, menu.outputMain, 104f, PROGRESS_SLOT_TOP)
SlotPanel(this, frame, menu.outputStacking, 122f, PROGRESS_SLOT_TOP)
SlotPanel(this, frame, menu.input, 122f, PROGRESS_SLOT_TOP)
ProgressGaugePanel(this, frame, menu.progressWidget, 96f, PROGRESS_ARROW_TOP).also { it.flop = true }
SlotPanel(this, frame, menu.outputMain, 74f, PROGRESS_SLOT_TOP)
SlotPanel(this, frame, menu.outputStacking, 56f, PROGRESS_SLOT_TOP)
return frame
}
}
}