From 40bd7053a4808273af8ab1062c0d445815c38f33 Mon Sep 17 00:00:00 2001 From: NovaFox161 Date: Sat, 7 Oct 2023 23:29:32 -0500 Subject: [PATCH] Fix incorrect locale fetch due to typo --- .../dreamexposure/discal/client/commands/global/EventCommand.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/main/kotlin/org/dreamexposure/discal/client/commands/global/EventCommand.kt b/client/src/main/kotlin/org/dreamexposure/discal/client/commands/global/EventCommand.kt index 86358b931..c839f2274 100644 --- a/client/src/main/kotlin/org/dreamexposure/discal/client/commands/global/EventCommand.kt +++ b/client/src/main/kotlin/org/dreamexposure/discal/client/commands/global/EventCommand.kt @@ -422,7 +422,7 @@ class EventCommand(val wizard: Wizard, val staticMessageSrv: StaticMes .flatMap { event.followupEphemeral(getMessage("recur.success.disable", settings), it) } } } else { - event.followupEphemeral(getMessage("error.wizard.notStart", settings)) + event.followupEphemeral(getMessage("error.wizard.notStarted", settings)) } }.switchIfEmpty(event.followupEphemeral(getCommonMsg("error.perms.privileged", settings))) }