summaryrefslogtreecommitdiff
path: root/bot/src/commands
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-12-15 00:47:20 +0500
committerilotterytea <iltsu@alright.party>2024-12-15 00:47:20 +0500
commit0581549cc5f5f6b80d681c55bed4b17783f1fd48 (patch)
tree9e1ab8204939476f603ee5cb28a817e4fb7fff4a /bot/src/commands
parent2b2611d5a2bb9f2bec1ef71285e3a4e2d848392c (diff)
feat: mcsrv command
Diffstat (limited to 'bot/src/commands')
-rw-r--r--bot/src/commands/command.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/bot/src/commands/command.cpp b/bot/src/commands/command.cpp
index 169ca71..bd33c68 100644
--- a/bot/src/commands/command.cpp
+++ b/bot/src/commands/command.cpp
@@ -15,6 +15,7 @@
#include "../modules/help.hpp"
#include "../modules/join.hpp"
#include "../modules/massping.hpp"
+#include "../modules/mcsrv.hpp"
#include "../modules/notify.hpp"
#include "../modules/ping.hpp"
#include "../modules/settings.hpp"
@@ -40,6 +41,7 @@ namespace bot {
this->add_command(std::make_unique<mod::Spam>());
this->add_command(std::make_unique<mod::Settings>());
this->add_command(std::make_unique<mod::User>());
+ this->add_command(std::make_unique<mod::MinecraftServerCheck>());
}
void CommandLoader::add_command(std::unique_ptr<Command> command) {