diff options
| author | ilotterytea <iltsu@alright.party> | 2024-12-15 00:47:20 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-12-15 00:47:20 +0500 |
| commit | 0581549cc5f5f6b80d681c55bed4b17783f1fd48 (patch) | |
| tree | 9e1ab8204939476f603ee5cb28a817e4fb7fff4a /bot/src/commands/command.cpp | |
| parent | 2b2611d5a2bb9f2bec1ef71285e3a4e2d848392c (diff) | |
feat: mcsrv command
Diffstat (limited to 'bot/src/commands/command.cpp')
| -rw-r--r-- | bot/src/commands/command.cpp | 2 |
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) { |
