diff options
Diffstat (limited to 'src/main/kotlin')
-rw-r--r-- | src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/NEUStatsCommand.kt | 3 |
1 files changed, 2 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 d5a39cb8..771da58c 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 @@ -53,7 +53,7 @@ import javax.management.ObjectName class NEUStatsCommand { @SubscribeEvent fun onCommands(event: RegisterBrigadierCommandEvent) { - event.command("stats", "neustats") { + event.command( "neustats") { thenLiteralExecute("modlist") { clipboardAndSendMessage( DiscordMarkdownBuilder() @@ -198,6 +198,7 @@ class NEUStatsCommand { builder.append("Last Commit", NotEnoughUpdates.INSTANCE.manager.latestRepoCommit) builder.append("Repo Location", "https://github.com/${apiData.repoUser}/${apiData.repoName}/tree/${apiData.repoBranch}") } + builder.append("Using Backup", NotEnoughUpdates.INSTANCE.manager.onBackupRepo) builder.append("Loaded Items", NotEnoughUpdates.INSTANCE.manager.itemInformation.size.toString()) if (apiData.moulberryCodesApi.isEmpty()) { apiData.moulberryCodesApi = "moulberry.codes" |