diff options
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()) |