Migrate to slash commands#189
Open
cfalas wants to merge 2 commits into
Open
Conversation
This is needed for discord to show the command lit when you type / It needs to be rerun whenever the signature of commands changes.
kgeorgiou
approved these changes
Jun 21, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Migrate from !prefix based commands to the newer discord slash commands. This has the following benefits:
Removes the need for help commands, since the signature is described while the user is entering the command
Removes the need for some of the param-checking (e.g. discord won't let you send a command with a missing argument)
Reduces bot-spam for users since only the response shows up as a notification, and some responses (mostly failed) are ephemeral (and only appear to the user who sent the command originally)

This PR also improves the error handling a bit, removing a lot of the duplicate per-command code by moving most of the error handling to be cog-wide instead of per-command.
(The diff is quite large, let me know if I should break it down, and/or invite you to a server so you can test it)