mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-01 05:43:01 +00:00
stable at last
This commit is contained in:
parent
bcaceac28b
commit
738940a431
1 changed files with 2 additions and 2 deletions
|
@ -143,7 +143,7 @@ end
|
|||
-- if error: @returns: false, String: error message
|
||||
function parse.keytable(tbl, facing, sum)
|
||||
local min, max = Vector3.new(), Vector3.new()
|
||||
local expected, d = 1, {"x", "y", "z"}
|
||||
local expected = 1
|
||||
local tmp = {axes = {}, num = 0, sign = 1, mirror = false}
|
||||
|
||||
--- Processes a number and adds it to the min and max vectors.
|
||||
|
@ -168,7 +168,7 @@ function parse.keytable(tbl, facing, sum)
|
|||
|
||||
if expected == 1 then
|
||||
if tmp.num then
|
||||
parseNumber(tmp.num, {d, rev=d}, tmp.sign)
|
||||
parseNumber(tmp.num, {"x", "y", "z", rev={"x", "y", "z"}}, tmp.sign)
|
||||
else
|
||||
local key_type, key_entry, key_sign = parse.keyword(v)
|
||||
|
||||
|
|
Loading…
Reference in a new issue