summaryrefslogtreecommitdiff
path: root/bot/src/commands
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-04-15 15:51:02 +0500
committerilotterytea <iltsu@alright.party>2025-04-15 15:51:02 +0500
commite410ed000d119d0d3e4d5707abad11512b9e4a34 (patch)
tree9c794a3fbc0ca615363948c4c92c183c462c6548 /bot/src/commands
parent2bd139d4323efa983df47bd131c90df501aee371 (diff)
feat: !help in lua
Diffstat (limited to 'bot/src/commands')
-rw-r--r--bot/src/commands/command.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/bot/src/commands/command.cpp b/bot/src/commands/command.cpp
index 7364125..92ae45b 100644
--- a/bot/src/commands/command.cpp
+++ b/bot/src/commands/command.cpp
@@ -15,7 +15,6 @@
#include "../bundle.hpp"
#include "../modules/custom_command.hpp"
#include "../modules/event.hpp"
-#include "../modules/help.hpp"
#include "../modules/notify.hpp"
#include "../modules/timer.hpp"
#include "../utils/chrono.hpp"
@@ -31,7 +30,6 @@ namespace bot {
this->add_command(std::make_unique<mod::Notify>());
this->add_command(std::make_unique<mod::CustomCommand>());
this->add_command(std::make_unique<mod::Timer>());
- this->add_command(std::make_unique<mod::Help>());
this->add_command(std::make_unique<mod::LuaExecution>());
this->add_command(std::make_unique<mod::LuaRemoteExecution>());