summaryrefslogtreecommitdiff
path: root/bot/src/commands/command.cpp
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-12-14 13:16:33 +0500
committerilotterytea <iltsu@alright.party>2024-12-14 13:16:33 +0500
commit6504ce844023f188dfb5350cd8ad34bfc94f5ac0 (patch)
tree3ce68cdf13097d415127de6a2664fe1e2e51d50b /bot/src/commands/command.cpp
parentd7b419837f58be4c75dfab756ffac025ed8fc962 (diff)
feat: spam command
Diffstat (limited to 'bot/src/commands/command.cpp')
-rw-r--r--bot/src/commands/command.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/bot/src/commands/command.cpp b/bot/src/commands/command.cpp
index 8d75999..3f99d9e 100644
--- a/bot/src/commands/command.cpp
+++ b/bot/src/commands/command.cpp
@@ -17,6 +17,7 @@
#include "../modules/massping.hpp"
#include "../modules/notify.hpp"
#include "../modules/ping.hpp"
+#include "../modules/spam.hpp"
#include "../modules/timer.hpp"
#include "../utils/chrono.hpp"
#include "request.hpp"
@@ -34,6 +35,7 @@ namespace bot {
this->add_command(std::make_unique<mod::Timer>());
this->add_command(std::make_unique<mod::Help>());
this->add_command(std::make_unique<mod::Chatters>());
+ this->add_command(std::make_unique<mod::Spam>());
}
void CommandLoader::add_command(std::unique_ptr<Command> command) {