mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 15:33:00 +00:00
scale.lua: fix inconsistent whitespace
This commit is contained in:
parent
ecb846fcfe
commit
92451cf125
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ worldedit.register_command("scale", {
|
|||
|
||||
if #parts == 2 then
|
||||
if not (parts[1] == "x" or parts[1] == "y" or parts[1] == "z"
|
||||
or parts[1] == "-x" or parts[1] == "-y" or parts[1] == "-z") then
|
||||
or parts[1] == "-x" or parts[1] == "-y" or parts[1] == "-z") then
|
||||
return false, "Error: Got 2 arguments, but the first doesn't look like the name of an axis."
|
||||
end
|
||||
local axis = parts[1]
|
||||
|
|
Loading…
Reference in a new issue