mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-26 09:03:01 +00:00
tokenise_commands: fix luacheck issue
This commit is contained in:
parent
0164a9b9eb
commit
f0e1111b7c
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ local function tokenise(str)
|
||||||
-- Decrease the nested depth
|
-- Decrease the nested depth
|
||||||
nested_depth = nested_depth - 1
|
nested_depth = nested_depth - 1
|
||||||
-- Pop the start of this block off the stack and find this block's contents
|
-- Pop the start of this block off the stack and find this block's contents
|
||||||
block_start = table.remove(nested_stack, #nested_stack)
|
local block_start = table.remove(nested_stack, #nested_stack)
|
||||||
local substr = str:sub(block_start, nextpos - 1)
|
local substr = str:sub(block_start, nextpos - 1)
|
||||||
if #substr > 0 and nested_depth == 0 then table.insert(result, substr) end
|
if #substr > 0 and nested_depth == 0 then table.insert(result, substr) end
|
||||||
elseif char == "{" then
|
elseif char == "{" then
|
||||||
|
|
Loading…
Reference in a new issue