summaryrefslogtreecommitdiff
path: root/bot/src/commands
diff options
context:
space:
mode:
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 fe29b28..7364125 100644
--- a/bot/src/commands/command.cpp
+++ b/bot/src/commands/command.cpp
@@ -17,7 +17,6 @@
#include "../modules/event.hpp"
#include "../modules/help.hpp"
#include "../modules/notify.hpp"
-#include "../modules/settings.hpp"
#include "../modules/timer.hpp"
#include "../utils/chrono.hpp"
#include "commands/lua.hpp"
@@ -33,7 +32,6 @@ namespace bot {
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::Settings>());
this->add_command(std::make_unique<mod::LuaExecution>());
this->add_command(std::make_unique<mod::LuaRemoteExecution>());