summaryrefslogtreecommitdiff
path: root/bot/src/commands/command.cpp
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-04-08 01:09:32 +0400
committerilotterytea <iltsu@alright.party>2025-04-08 01:09:32 +0400
commite1e754cff8d04269ff9276f7c42c94c8cfe8b85a (patch)
treed8b624a515777a2c560ec02ce68d2b14f80fcfd8 /bot/src/commands/command.cpp
parentdcf15f90e75e127e76e59b431cfc22755f57681a (diff)
feat: !massping in lua
Diffstat (limited to 'bot/src/commands/command.cpp')
-rw-r--r--bot/src/commands/command.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/bot/src/commands/command.cpp b/bot/src/commands/command.cpp
index e29b8bf..19cd31c 100644
--- a/bot/src/commands/command.cpp
+++ b/bot/src/commands/command.cpp
@@ -18,7 +18,6 @@
#include "../modules/event.hpp"
#include "../modules/help.hpp"
#include "../modules/join.hpp"
-#include "../modules/massping.hpp"
#include "../modules/mcsrv.hpp"
#include "../modules/notify.hpp"
#include "../modules/settings.hpp"
@@ -27,7 +26,6 @@
#include "../modules/user.hpp"
#include "../utils/chrono.hpp"
#include "commands/lua.hpp"
-#include "logger.hpp"
#include "modules/lua.hpp"
#include "request.hpp"
#include "response.hpp"
@@ -35,7 +33,6 @@
namespace bot {
namespace command {
CommandLoader::CommandLoader() {
- this->add_command(std::make_unique<mod::Massping>());
this->add_command(std::make_unique<mod::Event>());
this->add_command(std::make_unique<mod::Notify>());
this->add_command(std::make_unique<mod::Join>());