From fbc44e21393758ddf92397446d8e19f3f39a7317 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Sun, 22 Jun 2025 21:43:06 +0200 Subject: fix: transposed crafting recipe export --- src/main/kotlin/features/debug/itemeditor/ExportRecipe.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/main/kotlin/features/debug/itemeditor/ExportRecipe.kt b/src/main/kotlin/features/debug/itemeditor/ExportRecipe.kt index 75ab943..9306c84 100644 --- a/src/main/kotlin/features/debug/itemeditor/ExportRecipe.kt +++ b/src/main/kotlin/features/debug/itemeditor/ExportRecipe.kt @@ -25,8 +25,8 @@ import moe.nea.firmament.util.useMatch object ExportRecipe { - val xNames = "ABC" - val yNames = "123" + val xNames = "123" + val yNames = "ABC" val slotIndices = (0..<9).map { val x = it % 3 -- cgit