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

14 lines
519 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 ATQCommand :
Command("askthequestion", "Don't ask to ask, just ask!", "atq", allowAnywhere = true, aliases = listOf("atq")) {
override fun handle(event: CommandMessage): CommandResult {
event.reply("Don't ask to ask, just ask - https://i.imgur.com/93qXFd0.png")
return CommandResult.SUCCESS
}
}