From 0eb24460e439a601d6d44f3e7cf7dee348a7aa71 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sun, 4 Sep 2022 16:28:09 +0700 Subject: [PATCH] Swap places of input and output slots in matter decomposer --- .../mc/otm/client/screen/MatterDecomposerScreen.kt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/MatterDecomposerScreen.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/MatterDecomposerScreen.kt index ed562772f..715464461 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/MatterDecomposerScreen.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/client/screen/MatterDecomposerScreen.kt @@ -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 } -} \ No newline at end of file +}