ottobotv2/src/main/kotlin/nl/voidcorp/discord/commands/PermissionLevelCommand.kt

14 lines
500 B
Kotlin

package nl.voidcorp.discord.commands
import nl.voidcorp.discord.command.Command
import nl.voidcorp.discord.command.CommandMessage
import nl.voidcorp.discord.command.CommandResult
import org.springframework.stereotype.Component
@Component
class PermissionLevelCommand : Command("permissions") {
override fun handle(event: CommandMessage): CommandResult {
event.reply("Your highest permission level is `${getLevel(event.member!!).levelName}`")
return CommandResult.SUCCESS
}
}