From 2a90152bc7b3a9009b3a90cbc021fde8383f4b9b Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sat, 25 May 2024 00:30:01 +0500 Subject: feat: new command - chatters --- bot/src/commands/command.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bot/src/commands/command.cpp') diff --git a/bot/src/commands/command.cpp b/bot/src/commands/command.cpp index e3b45b1..b656254 100644 --- a/bot/src/commands/command.cpp +++ b/bot/src/commands/command.cpp @@ -9,6 +9,7 @@ #include #include "../bundle.hpp" +#include "../modules/chatters.hpp" #include "../modules/custom_command.hpp" #include "../modules/event.hpp" #include "../modules/help.hpp" @@ -31,6 +32,7 @@ namespace bot { this->add_command(std::make_unique()); this->add_command(std::make_unique()); this->add_command(std::make_unique()); + this->add_command(std::make_unique()); } void CommandLoader::add_command(std::unique_ptr command) { -- cgit v1.2.3