As it is now, the discord command architecture is not very practical. Since there is no effective parsing, we often have to resort to using a lot of ugly solutions such as if args[x].equals("something"). A new architecture with maybe something like:
MyOption option = commandParser.get("name")
would be much better
As it is now, the discord command architecture is not very practical. Since there is no effective parsing, we often have to resort to using a lot of ugly solutions such as
if args[x].equals("something"). A new architecture with maybe something like:would be much better