[mesecons_commandblock] fix warnings

This commit is contained in:
AFCMS 2021-05-23 11:37:51 +02:00
parent 4fd0ea8a88
commit ddc157acbf
1 changed files with 3 additions and 3 deletions

View File

@ -72,7 +72,7 @@ end
local function check_commands(commands, player_name)
for _, command in pairs(commands:split("\n")) do
local pos = command:find(" ")
local cmd, param = command, ""
local cmd = command
if pos then
cmd = command:sub(1, pos - 1)
end