ottobot-v3/src/main/kotlin/nl/voidcorp/ottobot/commands/general/SpillKerrieCommand.kt

19 lines
563 B
Kotlin

package nl.voidcorp.ottobot.commands.general
import nl.voidcorp.ottobot.command.Command
import nl.voidcorp.ottobot.command.CommandMessage
import nl.voidcorp.ottobot.command.CommandResult
object SpillKerrieCommand : Command(
"spillkerrie",
helpMesage = "`oepsie woepsie, it seems you have spilled the kerrie, we deden een fucky wucky`",
allowAnywhere = true,
aliases = listOf("stk", "spillthekerrie")
) {
override fun handle(event: CommandMessage): CommandResult {
event.reply("_oh no_")
return CommandResult.SUCCESS
}
}