forked from thunderdog1138/star_wars
Rename intersects_protection to is_area_protected
This commit is contained in:
parent
70d91bc64d
commit
04a46d0671
|
@ -41,6 +41,6 @@ default.register_chest = default.chest.register_chest
|
|||
-- Check for a volume intersecting protection
|
||||
function default.intersects_protection(minp, maxp, player_name, interval)
|
||||
minetest.log("warning", "default.intersects_protection() is " ..
|
||||
"deprecated, use minetest.intersects_protection() instead.")
|
||||
minetest.intersects_protection(minp, maxp, player_name, interval)
|
||||
"deprecated, use minetest.is_area_protected() instead.")
|
||||
minetest.is_area_protected(minp, maxp, player_name, interval)
|
||||
end
|
||||
|
|
|
@ -504,7 +504,7 @@ function default.sapling_on_place(itemstack, placer, pointed_thing,
|
|||
return itemstack
|
||||
end
|
||||
-- Check tree volume for protection
|
||||
if minetest.intersects_protection(
|
||||
if minetest.is_area_protected(
|
||||
vector.add(pos, minp_relative),
|
||||
vector.add(pos, maxp_relative),
|
||||
player_name,
|
||||
|
|
Loading…
Reference in New Issue