Replies: 1 comment 5 replies
-
I agree, there's a lot of options in the CommandClientBuilder and it's getting VERY messy. Probably a 2.0 thing depending on how breaking we want to make it. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I understand the entirety of the command system correctly, is there no simple way to set certain defaults on a global scale.
Like there doesn't seem to be a way to define a bot's default Permissions required for all commands and you have to set the exact same permissions for each command separately.
This can become quite frustrating when you want to apply the same values on dozens of commands, as you now have to go and set it for each separate command class yourself.
Because of this would I like to suggest a way for devs to make a class, which implements/extends a
CommandSettings
class from Chewtils, which you can then set as the main default settings for the Command Handler/builder to use in commands, if they don't override things.Example setup:
Beta Was this translation helpful? Give feedback.
All reactions