summaryrefslogtreecommitdiff
path: root/bot/src/commands
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-04-16 15:50:08 +0500
committerilotterytea <iltsu@alright.party>2025-04-16 15:50:08 +0500
commit52a6af6a2e5d64561a6a8a15c7e079fe46ffaa85 (patch)
treeb58b46608b14d7a7baf4623819cdb7d6944c0a7e /bot/src/commands
parente410ed000d119d0d3e4d5707abad11512b9e4a34 (diff)
feat: !cmd 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 92ae45b..fa266de 100644
--- a/bot/src/commands/command.cpp
+++ b/bot/src/commands/command.cpp
@@ -13,7 +13,6 @@
#include <string>
#include "../bundle.hpp"
-#include "../modules/custom_command.hpp"
#include "../modules/event.hpp"
#include "../modules/notify.hpp"
#include "../modules/timer.hpp"
@@ -28,7 +27,6 @@ namespace bot {
CommandLoader::CommandLoader() {
this->add_command(std::make_unique<mod::Event>());
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::LuaExecution>());