summaryrefslogtreecommitdiff
path: root/src/commands/command.cpp
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-05-11 17:05:41 +0500
committerilotterytea <iltsu@alright.party>2024-05-11 17:05:41 +0500
commitd57a5bcc3151f91fd82aa6f333e99a60eca8ced3 (patch)
tree4a171216607ad958ab2128619622fa02cea6a0d2 /src/commands/command.cpp
parent4cc618566d8546a06da0974612d08df80c45db62 (diff)
feat: help command + url configuration
Diffstat (limited to 'src/commands/command.cpp')
-rw-r--r--src/commands/command.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/commands/command.cpp b/src/commands/command.cpp
index 0bc0f15..e3b45b1 100644
--- a/src/commands/command.cpp
+++ b/src/commands/command.cpp
@@ -11,6 +11,7 @@
#include "../bundle.hpp"
#include "../modules/custom_command.hpp"
#include "../modules/event.hpp"
+#include "../modules/help.hpp"
#include "../modules/join.hpp"
#include "../modules/massping.hpp"
#include "../modules/notify.hpp"
@@ -29,6 +30,7 @@ namespace bot {
this->add_command(std::make_unique<mod::Join>());
this->add_command(std::make_unique<mod::CustomCommand>());
this->add_command(std::make_unique<mod::Timer>());
+ this->add_command(std::make_unique<mod::Help>());
}
void CommandLoader::add_command(std::unique_ptr<Command> command) {