summaryrefslogtreecommitdiff
path: root/bot/src/commands/command.cpp
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-04-17 01:56:12 +0500
committerilotterytea <iltsu@alright.party>2025-04-17 01:56:12 +0500
commit3355ee655fde11f3bb65037d4090a27e7acb37b1 (patch)
tree562679575319d6258152dc8c3fb20f6baa7f8162 /bot/src/commands/command.cpp
parent61d1bb2d4b56dc1bbf4c5a43fbe3bbaf3430e25d (diff)
feat: !notify in lua
Diffstat (limited to 'bot/src/commands/command.cpp')
-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 55fac64..410d5ba 100644
--- a/bot/src/commands/command.cpp
+++ b/bot/src/commands/command.cpp
@@ -13,7 +13,6 @@
#include <string>
#include "../bundle.hpp"
-#include "../modules/notify.hpp"
#include "../modules/timer.hpp"
#include "../utils/chrono.hpp"
#include "commands/lua.hpp"
@@ -24,7 +23,6 @@
namespace bot {
namespace command {
CommandLoader::CommandLoader() {
- this->add_command(std::make_unique<mod::Notify>());
this->add_command(std::make_unique<mod::Timer>());
this->add_command(std::make_unique<mod::LuaExecution>());