mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 15:33:00 +00:00
//dome+: ensure domes include pos1
This commit is contained in:
parent
5ac98cfa22
commit
e294d96efe
1 changed files with 6 additions and 6 deletions
|
@ -48,22 +48,22 @@ function worldeditadditions.dome(pos, radius, replace_node, pointing_dir, hollow
|
|||
if is_in_range then
|
||||
-- It's inside the radius, but we're still not sure given this is a dome and not a sphere
|
||||
local should_include = false
|
||||
if x < centrepoint.x and pointing_dir.x < 0 then
|
||||
if x <= centrepoint.x and pointing_dir.x < 0 then
|
||||
should_include = true
|
||||
end
|
||||
if x > centrepoint.x and pointing_dir.x > 0 then
|
||||
if x >= centrepoint.x and pointing_dir.x > 0 then
|
||||
should_include = true
|
||||
end
|
||||
if y < centrepoint.y and pointing_dir.y < 0 then
|
||||
if y <= centrepoint.y and pointing_dir.y < 0 then
|
||||
should_include = true
|
||||
end
|
||||
if y > centrepoint.y and pointing_dir.y > 0 then
|
||||
if y >= centrepoint.y and pointing_dir.y > 0 then
|
||||
should_include = true
|
||||
end
|
||||
if z < centrepoint.z and pointing_dir.z < 0 then
|
||||
if z <= centrepoint.z and pointing_dir.z < 0 then
|
||||
should_include = true
|
||||
end
|
||||
if z > centrepoint.z and pointing_dir.z > 0 then
|
||||
if z >= centrepoint.z and pointing_dir.z > 0 then
|
||||
should_include = true
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue