From 84bb9ad288d88ce4777137be402ecddf6c3f9a0e Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sun, 5 May 2024 19:45:51 +0500 Subject: feat: new command - !event --- src/commands/command.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/commands') diff --git a/src/commands/command.cpp b/src/commands/command.cpp index 60db7c5..46dc03b 100644 --- a/src/commands/command.cpp +++ b/src/commands/command.cpp @@ -9,6 +9,7 @@ #include #include "../bundle.hpp" +#include "../modules/event.hpp" #include "../modules/massping.hpp" #include "../modules/ping.hpp" #include "../utils/chrono.hpp" @@ -19,6 +20,7 @@ namespace bot { CommandLoader::CommandLoader() { 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