Make say support both slash and message commands

This commit is contained in:
2022-12-19 00:05:13 +01:00
parent 81e621ec1a
commit 1410e4e8af
4 changed files with 65 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
package wtf.beatrice.hidekobot.commands.base;
import net.dv8tion.jda.api.Permission;
public class Say
{
public static Permission getPermission() {
return Permission.MESSAGE_MANAGE;
}
}