add avatar command
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 40s

This commit is contained in:
Lee
2024-06-26 02:46:27 +01:00
parent 47beff752c
commit aec2fe1c2b
6 changed files with 42 additions and 5 deletions

View File

@ -88,7 +88,7 @@ public abstract class BatCommand implements BatCommandExecutor {
* @param description the description of the option
* @param required whether the option is required
*/
private void addOption(OptionType optionType, String name, String description, boolean required) {
protected void addOption(OptionType optionType, String name, String description, boolean required) {
this.commandData.addOption(optionType, name, description, required);
}