suvanl / delet3

delet³ - Discord bot. Currently in alpha.
http://delet3.web.app
MIT License
6 stars 0 forks source link

Dev - remove deprecated text commands and convert commands running in hybrid mode #69

Closed suvanl closed 2 years ago

suvanl commented 2 years ago

This PR chiefly completely removes deprecated text commands and converts commands running in a so-called "hybrid mode" over to full Application Commands.

The deprecated (and now removed) commands are:

The commands running in hybrid mode which are now full Application Commands are:

Other miscellaneous changes include:

Documentation changes:

suvanl commented 2 years ago

For the sake of clarity: "hybrid mode" was where a command would exist in both text command and application command format. The command implementation would exist in the text command's source file, while the application command would simply call the run() function from the text command. This was possible as the interaction object is very similar in nature to the message object.