diff options
| author | ilotterytea <iltsu@alright.party> | 2025-04-07 23:00:43 +0400 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-04-07 23:00:43 +0400 |
| commit | a6337b079d5397f6d74b4b8b4f5f569be7dd132f (patch) | |
| tree | 54377bc424ebb297ca88f263244e76a3370f079a /bot/src/commands | |
| parent | cb2a0267da367bd1ce0559d4a1230a6e426d9e3c (diff) | |
feat: a command for executing remote lua scripts
Diffstat (limited to 'bot/src/commands')
| -rw-r--r-- | bot/src/commands/command.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/src/commands/command.cpp b/bot/src/commands/command.cpp index 4942e96..48bca09 100644 --- a/bot/src/commands/command.cpp +++ b/bot/src/commands/command.cpp @@ -49,6 +49,7 @@ namespace bot { this->add_command(std::make_unique<mod::MinecraftServerCheck>()); this->add_command(std::make_unique<mod::LuaExecution>()); + this->add_command(std::make_unique<mod::LuaRemoteExecution>()); this->luaState = std::make_shared<sol::state>(); this->luaState->open_libraries(sol::lib::base, sol::lib::string, |
