Newer
Older
Croma / src / main / kotlin / com / jagrosh / vortex / commands / VoicekickCmd.kt
Maple Nebel Maple Nebel on 27 May 392 bytes im eepy
package com.jagrosh.vortex.commands

import com.jagrosh.jdautilities.command.CommandEvent
import com.jagrosh.vortex.Vortex
import net.dv8tion.jda.api.Permission

class VoicekickCmd(vortex: Vortex) : ModCommand(vortex, Permission.VOICE_MOVE_OTHERS){
    override fun execute(event: CommandEvent?) {
        if (event == null){
            return
        }
        event.reply("no :3");
    }
}