mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 15:33:00 +00:00
fixup
This commit is contained in:
parent
a937740275
commit
50da328c67
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
--- Uncomment these 2 lines to run in standalone mode
|
--- Uncomment these 2 lines to run in standalone mode
|
||||||
-- worldeditadditions = {}
|
-- worldeditadditions = { parse = { } }
|
||||||
-- function worldeditadditions.trim(str) return (str:gsub("^%s*(.-)%s*$", "%1")) end
|
-- function worldeditadditions.trim(str) return (str:gsub("^%s*(.-)%s*$", "%1")) end
|
||||||
|
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
--
|
--
|
||||||
-- @param command_str str The command string to operate on.
|
-- @param command_str str The command string to operate on.
|
||||||
-- @returns bool,(string[]|string) If the operation was successful, then true followed by a table of strings is returned. If the operation was not successful, then false followed by an error message (as a single string) is returned instead.
|
-- @returns bool,(string[]|string) If the operation was successful, then true followed by a table of strings is returned. If the operation was not successful, then false followed by an error message (as a single string) is returned instead.
|
||||||
function worldeditadditions.tokenise_commands(command_str)
|
function worldeditadditions.parse.tokenise_commands(command_str)
|
||||||
local success, result = tokenise(command_str)
|
local success, result = tokenise(command_str)
|
||||||
if not success then return success, result end
|
if not success then return success, result end
|
||||||
return true, recombine(result)
|
return true, recombine(result)
|
||||||
|
@ -106,7 +106,7 @@ end
|
||||||
-- end
|
-- end
|
||||||
--
|
--
|
||||||
-- local function test_input(input)
|
-- local function test_input(input)
|
||||||
-- local success, result = worldeditadditions.tokenise_commands(input)
|
-- local success, result = worldeditadditions.parse.tokenise_commands(input)
|
||||||
-- if success then
|
-- if success then
|
||||||
-- printparts(result)
|
-- printparts(result)
|
||||||
--
|
--
|
||||||
|
|
Loading…
Reference in a new issue