diff --git a/src/listeners/slash.cpp b/src/listeners/slash.cpp index b64abe5..0614557 100644 --- a/src/listeners/slash.cpp +++ b/src/listeners/slash.cpp @@ -1,8 +1,10 @@ #include "slash.h" #include "commands/rules.h" #include "commands/add.h" +#include "commands/remove.h" void slash::execute(sql::Connection &con, dpp::cluster &bot, const dpp::slashcommand_t &event) { if (event.command.get_command_name() == "rules") return rules::execute(event); if (event.command.get_command_name() == "add") return add::execute(con, bot, event); + if (event.command.get_command_name() == "remove") return remove::execute(con, bot, event); } \ No newline at end of file