diff options
author | Linnea Gräf <nea@nea.moe> | 2025-06-22 21:43:06 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-06-22 21:43:06 +0200 |
commit | fbc44e21393758ddf92397446d8e19f3f39a7317 (patch) | |
tree | eef005cd32a47a6437703518233f7236b93a9265 /src | |
parent | c74930d6cb142cb8c3480a387645f8b4752c953a (diff) | |
download | Firmament-fbc44e21393758ddf92397446d8e19f3f39a7317.tar.gz Firmament-fbc44e21393758ddf92397446d8e19f3f39a7317.tar.bz2 Firmament-fbc44e21393758ddf92397446d8e19f3f39a7317.zip |
fix: transposed crafting recipe export
Diffstat (limited to 'src')
-rw-r--r-- | src/main/kotlin/features/debug/itemeditor/ExportRecipe.kt | 4 |
1 files changed, 2 insertions, 2 deletions
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 |