summaryrefslogtreecommitdiff
path: root/src/commands/command.cpp
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-05-08 22:15:48 +0500
committerilotterytea <iltsu@alright.party>2024-05-08 22:15:48 +0500
commit6034e01a6c0d62546f10247aa481304699ed4155 (patch)
tree2db9ecd51aa37ac135131bd019f25c7ac8ae995d /src/commands/command.cpp
parentef028f6535c8aac9367d2375cdd9556a1dcfe4f7 (diff)
feat: new command - !join
Diffstat (limited to 'src/commands/command.cpp')
-rw-r--r--src/commands/command.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/commands/command.cpp b/src/commands/command.cpp
index dfb1fbf..44a405c 100644
--- a/src/commands/command.cpp
+++ b/src/commands/command.cpp
@@ -10,6 +10,7 @@
#include "../bundle.hpp"
#include "../modules/event.hpp"
+#include "../modules/join.hpp"
#include "../modules/massping.hpp"
#include "../modules/notify.hpp"
#include "../modules/ping.hpp"
@@ -23,6 +24,7 @@ namespace bot {
this->add_command(std::make_unique<mod::Massping>());
this->add_command(std::make_unique<mod::Event>());
this->add_command(std::make_unique<mod::Notify>());
+ this->add_command(std::make_unique<mod::Join>());
}
void CommandLoader::add_command(std::unique_ptr<Command> command) {