mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 15:33:00 +00:00
restored indentation in torus.lua
This commit is contained in:
parent
fc8f76b9dc
commit
88c70ee233
1 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@
|
||||||
-- ██ ██████ ██ ██ ██████ ███████
|
-- ██ ██████ ██ ██ ██████ ███████
|
||||||
local function parse_params_torus(params_text)
|
local function parse_params_torus(params_text)
|
||||||
local parts = worldeditadditions.split(params_text, "%s+", false)
|
local parts = worldeditadditions.split(params_text, "%s+", false)
|
||||||
|
|
||||||
if #parts < 1 then
|
if #parts < 1 then
|
||||||
return false, "Error: No replace_node specified."
|
return false, "Error: No replace_node specified."
|
||||||
end
|
end
|
||||||
|
@ -15,14 +15,14 @@ local function parse_params_torus(params_text)
|
||||||
if #parts < 3 then
|
if #parts < 3 then
|
||||||
return false, "Error: No minor radius specified (expected integer greater than 0)."
|
return false, "Error: No minor radius specified (expected integer greater than 0)."
|
||||||
end
|
end
|
||||||
|
|
||||||
local major_radius = tonumber(parts[1])
|
local major_radius = tonumber(parts[1])
|
||||||
local minor_radius = tonumber(parts[2])
|
local minor_radius = tonumber(parts[2])
|
||||||
local replace_node = worldedit.normalize_nodename(parts[3])
|
local replace_node = worldedit.normalize_nodename(parts[3])
|
||||||
local axes
|
local axes
|
||||||
if #parts > 3 then axes = parts[4] end
|
if #parts > 3 then axes = parts[4] end
|
||||||
if not axes then axes = "xy" end
|
if not axes then axes = "xy" end
|
||||||
|
|
||||||
if major_radius < 1 then
|
if major_radius < 1 then
|
||||||
return false, "Error: The major radius must be greater than 0."
|
return false, "Error: The major radius must be greater than 0."
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue