aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2025-06-22 21:43:06 +0200
committerLinnea Gräf <nea@nea.moe>2025-06-22 21:43:06 +0200
commitfbc44e21393758ddf92397446d8e19f3f39a7317 (patch)
treeeef005cd32a47a6437703518233f7236b93a9265 /src
parentc74930d6cb142cb8c3480a387645f8b4752c953a (diff)
downloadFirmament-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.kt4
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