From 9484a621afdc79800b25215908e4ee886f328993 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Mon, 17 Mar 2025 23:38:50 +0100 Subject: refactor: Add stats and reforges to SBItemProperty --- src/main/kotlin/commands/rome.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/main/kotlin/commands/rome.kt') 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()) -- cgit