From 1134c8316e5ee445567f9bf225e9fb9c2631b4dc Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sat, 14 Dec 2024 23:23:12 +0500 Subject: feat: settings command --- 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 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()); 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