From 58df60b6e3ccda724a81dd9f0721b1c6e84686c1 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Mon, 6 May 2024 00:45:48 +0500 Subject: feat: new command - !notify (i havent tested it (clueless)) --- 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 46dc03b..dfb1fbf 100644 --- a/src/commands/command.cpp +++ b/src/commands/command.cpp @@ -11,6 +11,7 @@ #include "../bundle.hpp" #include "../modules/event.hpp" #include "../modules/massping.hpp" +#include "../modules/notify.hpp" #include "../modules/ping.hpp" #include "../utils/chrono.hpp" #include "request.hpp" @@ -21,6 +22,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