Make say support both slash and message commands

This commit is contained in:
Lorenzo Dellacà
2022-12-19 00:05:13 +01:00
parent b318b9f22b
commit cb49bda84a
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;
}
}