Add ATQ command, we want a question, not a request for a question
This commit is contained in:
parent
0ab9e42782
commit
bf314f5f91
|
@ -0,0 +1,15 @@
|
||||||
|
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 ATQCommand :
|
||||||
|
Command("answerthequestion", "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
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue