aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/NEUStatsCommand.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/NEUStatsCommand.kt b/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/NEUStatsCommand.kt
index 08869032..2bc8ae6f 100644
--- a/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/NEUStatsCommand.kt
+++ b/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/NEUStatsCommand.kt
@@ -174,7 +174,7 @@ class NEUStatsCommand {
private fun appendModList(builder: DiscordMarkdownBuilder): DiscordMarkdownBuilder {
builder.category("Mods Loaded")
Loader.instance().activeModList.forEach {
- builder.append(it.name, "${it.source} (${it.displayVersion})")
+ builder.append(it.name, "${it.source.name} (${it.displayVersion})")
}
return builder
}