diff --git a/src/main/kotlin/com/lambda/client/module/modules/misc/StashLogger.kt b/src/main/kotlin/com/lambda/client/module/modules/misc/StashLogger.kt index 56fa4ed60..56ecb8ff6 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/misc/StashLogger.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/misc/StashLogger.kt @@ -85,10 +85,10 @@ object StashLogger : Module( if (logToChat) { val positionString = center.asString() - MessageSendHelper.sendChatMessage("$chatName $positionString $string") + MessageSendHelper.sendChatMessage("$chatName Found $string at ($positionString) ") } - found = found || true + found = true } if (found) { @@ -166,7 +166,13 @@ object StashLogger : Module( } override fun toString(): String { - return "($chests chests, $shulkers shulkers, $droppers droppers, $dispensers dispensers, $hoppers hoppers)" + val statList = mutableListOf() + if (chests > 0 && logChests) statList.add("$chests chest${if (chests == 1) "" else "s"}") + if (shulkers > 0 && logShulkers) statList.add("$shulkers shulker${if (shulkers == 1) "" else "s"}") + if (droppers > 0 && logDroppers) statList.add("$droppers dropper${if (droppers == 1) "" else "s"}") + if (dispensers > 0 && logDispensers) statList.add("$dispensers dispenser${if (dispensers == 1) "" else "s"}") + if (hoppers > 0 && logHoppers) statList.add("$hoppers hopper${if (hoppers == 1) "" else "s"}") + return statList.joinToString() } } }