summaryrefslogtreecommitdiff
path: root/bot/src/commands/command.cpp
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-12-14 23:23:12 +0500
committerilotterytea <iltsu@alright.party>2024-12-14 23:23:12 +0500
commit1134c8316e5ee445567f9bf225e9fb9c2631b4dc (patch)
tree05380fdd9ab9b40af9443bb5e0cd52aeec36a53a /bot/src/commands/command.cpp
parent79c39906131bb72780da96ccc6eb43524dec3350 (diff)
feat: settings 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 3f99d9e..7dd4e47 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/settings.hpp"
#include "../modules/spam.hpp"
#include "../modules/timer.hpp"
#include "../utils/chrono.hpp"
@@ -36,6 +37,7 @@ namespace bot {
this->add_command(std::make_unique<mod::Help>());
this->add_command(std::make_unique<mod::Chatters>());
this->add_command(std::make_unique<mod::Spam>());
+ this->add_command(std::make_unique<mod::Settings>());
}
void CommandLoader::add_command(std::unique_ptr<Command> command) {