aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornea <nea@nea.moe>2023-03-05 16:00:25 +0100
committernea <nea@nea.moe>2023-03-05 16:00:25 +0100
commit734849d962db853153b1fdbf578e9b6ed85c5e14 (patch)
tree7c83a274e1206a7c2b8772e64364b06f010b42a7
parentbbc5868b2aff78f1375cf8632ad94b0a6b68e620 (diff)
downloadNotEnoughUpdates-fix/useragent.tar.gz
NotEnoughUpdates-fix/useragent.tar.bz2
NotEnoughUpdates-fix/useragent.zip
Fix double [NEU] tag before neudevtest togglefix/useragent
-rw-r--r--src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/DevTestCommand.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/DevTestCommand.kt b/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/DevTestCommand.kt
index 7758e780..a5ff48d2 100644
--- a/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/DevTestCommand.kt
+++ b/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/dev/DevTestCommand.kt
@@ -171,7 +171,7 @@ class DevTestCommand {
}
thenLiteralExecute("dev") {
NotEnoughUpdates.INSTANCE.config.hidden.dev = !NotEnoughUpdates.INSTANCE.config.hidden.dev
- reply("§e[NEU] Dev mode " + if (NotEnoughUpdates.INSTANCE.config.hidden.dev) "§aenabled" else "§cdisabled")
+ reply("Dev mode " + if (NotEnoughUpdates.INSTANCE.config.hidden.dev) "§aenabled" else "§cdisabled")
}.withHelp("Toggle developer mode")
thenLiteralExecute("saveconfig") {
NotEnoughUpdates.INSTANCE.saveConfig()