diff options
author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2023-08-05 23:11:39 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-05 15:11:39 +0200 |
commit | 0ee93d0237f29f7ee296fd694c260dba58a92a67 (patch) | |
tree | aa430453e850a866538d4f024bc4ea6d4e63be3a /src/main/kotlin/io | |
parent | 2a78a5da01b361968770a54e4712a19c18c7feef (diff) | |
download | NotEnoughUpdates-0ee93d0237f29f7ee296fd694c260dba58a92a67.tar.gz NotEnoughUpdates-0ee93d0237f29f7ee296fd694c260dba58a92a67.tar.bz2 NotEnoughUpdates-0ee93d0237f29f7ee296fd694c260dba58a92a67.zip |
Some changes to the backup repo (#796)
* maybe fix the backup repo not working sometimes
* change wording
Diffstat (limited to 'src/main/kotlin/io')
-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" |