diff options
author | Linnea Gräf <nea@nea.moe> | 2025-03-17 23:38:50 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-03-17 23:38:50 +0100 |
commit | 9484a621afdc79800b25215908e4ee886f328993 (patch) | |
tree | eaf8544fe5b8dba07895d4c74250f1b5413821ca /src/main/kotlin/commands/rome.kt | |
parent | aacd527cb8e226b92e5ad28d8d075da06fd79ec4 (diff) | |
download | Firmament-9484a621afdc79800b25215908e4ee886f328993.tar.gz Firmament-9484a621afdc79800b25215908e4ee886f328993.tar.bz2 Firmament-9484a621afdc79800b25215908e4ee886f328993.zip |
refactor: Add stats and reforges to SBItemPropertyexperiment/itemstacks
Diffstat (limited to 'src/main/kotlin/commands/rome.kt')
-rw-r--r-- | src/main/kotlin/commands/rome.kt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/kotlin/commands/rome.kt b/src/main/kotlin/commands/rome.kt index 3b3ab7a..5bdd0ed 100644 --- a/src/main/kotlin/commands/rome.kt +++ b/src/main/kotlin/commands/rome.kt @@ -257,8 +257,10 @@ fun firmamentCommand() = literal("firmament") { dataT.gold() else if (oldData == data) dataT.lime() - else + else { + println("Mismatched prop ${prop}:\nExpected: ${oldData}\nActual : ${data}") dataT.red() + } source.sendFeedback(Text.literal("${prop.javaClass.simpleName}") .blue() .append(Text.literal(": ").grey()) |