mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 07:23:00 +00:00
Fix safe_region
This commit is contained in:
parent
8e515c3778
commit
58faa8349e
1 changed files with 2 additions and 2 deletions
|
@ -55,12 +55,12 @@ worldedit.register_command("maze", {
|
|||
return success, replace_node, seed, path_length, path_width
|
||||
end,
|
||||
nodes_needed = function(name)
|
||||
worldedit.player_notify(name, "Called nodes_needed")
|
||||
local pos1 = worldedit.pos1[name]
|
||||
local pos2 = worldedit.pos2[name]
|
||||
pos1, pos2 = worldedit.sort_pos(pos1, pos2)
|
||||
|
||||
return (pos2.x - pos1.x) * (pos2.y - pos1.y) * (pos1.z - pos2.z)
|
||||
worldedit.player_notify(name, "nodes: "..(pos2.x - pos1.x)..", "..(pos2.y - pos1.y)..", "..(pos2.z - pos1.z))
|
||||
return (pos2.x - pos1.x) * (pos2.y - pos1.y) * (pos2.z - pos1.z)
|
||||
end,
|
||||
func = function(name, replace_node, seed, path_length, path_width)
|
||||
if not replace_node then
|
||||
|
|
Loading…
Reference in a new issue