From 860e6216e9c0c5e554d07aa0db8ab74dfbb873f7 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Wed, 8 May 2024 23:29:37 +0500 Subject: feat: new command - !scmd --- src/commands/command.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/commands/command.cpp') diff --git a/src/commands/command.cpp b/src/commands/command.cpp index 44a405c..4cfe959 100644 --- a/src/commands/command.cpp +++ b/src/commands/command.cpp @@ -9,6 +9,7 @@ #include #include "../bundle.hpp" +#include "../modules/custom_command.hpp" #include "../modules/event.hpp" #include "../modules/join.hpp" #include "../modules/massping.hpp" @@ -25,6 +26,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