diff options
| author | ilotterytea <iltsu@alright.party> | 2024-05-25 00:30:01 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-05-25 00:30:01 +0500 |
| commit | 2a90152bc7b3a9009b3a90cbc021fde8383f4b9b (patch) | |
| tree | 876190f88c9010c91f2cf81dadbc52c13565afa6 /bot/src/commands | |
| parent | 59b52bfab39d98a11052497ab387011a9835ef1b (diff) | |
feat: new command - chatters
Diffstat (limited to 'bot/src/commands')
| -rw-r--r-- | bot/src/commands/command.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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 <string> #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<mod::CustomCommand>()); this->add_command(std::make_unique<mod::Timer>()); this->add_command(std::make_unique<mod::Help>()); + this->add_command(std::make_unique<mod::Chatters>()); } void CommandLoader::add_command(std::unique_ptr<Command> command) { |
