diff --git a/client/src/main/kotlin/org/dreamexposure/discal/client/listeners/discord/SlashCommandListener.kt b/client/src/main/kotlin/org/dreamexposure/discal/client/listeners/discord/SlashCommandListener.kt index 248515a0..db6f9374 100644 --- a/client/src/main/kotlin/org/dreamexposure/discal/client/listeners/discord/SlashCommandListener.kt +++ b/client/src/main/kotlin/org/dreamexposure/discal/client/listeners/discord/SlashCommandListener.kt @@ -32,7 +32,7 @@ class SlashCommandListener(applicationContext: ApplicationContext) { }.doOnError { LOGGER.error("Unhandled slash command error", it) }.onErrorResume { - Mono.empty() + event.followupEphemeral("An unknown error has occurred. Please try again and/or contact DisCal support.") }.then() } }