summaryrefslogtreecommitdiff
path: root/bot/src/commands
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-04-15 04:30:55 +0500
committerilotterytea <iltsu@alright.party>2025-04-15 04:30:55 +0500
commitaad647cdb74c5773dd2ce45d063843e387d6b67c (patch)
treeda4e2f41c0481e9eed59507354b43fc4829a2143 /bot/src/commands
parent1b34dc98d33c78cf2d09f0e46b83aceee0c43694 (diff)
feat: !userid 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 ad18cd2..18273e4 100644
--- a/bot/src/commands/command.cpp
+++ b/bot/src/commands/command.cpp
@@ -19,7 +19,6 @@
#include "../modules/notify.hpp"
#include "../modules/settings.hpp"
#include "../modules/timer.hpp"
-#include "../modules/user.hpp"
#include "../utils/chrono.hpp"
#include "commands/lua.hpp"
#include "modules/lua.hpp"
@@ -35,7 +34,6 @@ namespace bot {
this->add_command(std::make_unique<mod::Timer>());
this->add_command(std::make_unique<mod::Help>());
this->add_command(std::make_unique<mod::Settings>());
- this->add_command(std::make_unique<mod::User>());
this->add_command(std::make_unique<mod::LuaExecution>());
this->add_command(std::make_unique<mod::LuaRemoteExecution>());