diff options
author | Mattes D <github@xoft.cz> | 2015-02-18 20:59:50 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-02-18 20:59:50 +0100 |
commit | af1a5b36db5e051957508cfd3e23d1ded494bcef (patch) | |
tree | 5d26bfeb762cb2e97fd9dd18b82e6b607d9626df | |
parent | Network: Fixed two-socket servers. (diff) | |
download | cuberite-af1a5b36db5e051957508cfd3e23d1ded494bcef.tar cuberite-af1a5b36db5e051957508cfd3e23d1ded494bcef.tar.gz cuberite-af1a5b36db5e051957508cfd3e23d1ded494bcef.tar.bz2 cuberite-af1a5b36db5e051957508cfd3e23d1ded494bcef.tar.lz cuberite-af1a5b36db5e051957508cfd3e23d1ded494bcef.tar.xz cuberite-af1a5b36db5e051957508cfd3e23d1ded494bcef.tar.zst cuberite-af1a5b36db5e051957508cfd3e23d1ded494bcef.zip |
Diffstat (limited to '')
-rw-r--r-- | MCServer/Plugins/InfoReg.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MCServer/Plugins/InfoReg.lua b/MCServer/Plugins/InfoReg.lua index 92c4a2e59..e34b79564 100644 --- a/MCServer/Plugins/InfoReg.lua +++ b/MCServer/Plugins/InfoReg.lua @@ -87,8 +87,7 @@ local function MultiCommandHandler(a_Split, a_Player, a_CmdString, a_CmdInfo, a_ LOG("Cannot find handler for command " .. a_CmdString .. " " .. Verb); return false; end - MultiCommandHandler(a_Split, a_Player, a_CmdString .. " " .. Verb, Subcommand, a_Level + 1); - return true; + return MultiCommandHandler(a_Split, a_Player, a_CmdString .. " " .. Verb, Subcommand, a_Level + 1); end -- Execute: |