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, 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) {