ottobotv2/src/main/kotlin/nl/voidcorp/discord/commands/general/SplillKerrieCommand.kt

19 lines
616 B
Kotlin

package nl.voidcorp.discord.commands.general
import nl.voidcorp.discord.command.Command
import nl.voidcorp.discord.command.CommandMessage
import nl.voidcorp.discord.command.CommandResult
import org.springframework.stereotype.Service
@Service
class SplillKerrieCommand : 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
}
}