Skip to content
Snippets Groups Projects
Commit 04a46d06 authored by SmallJoker's avatar SmallJoker Committed by paramat
Browse files

Rename intersects_protection to is_area_protected

parent 70d91bc6
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment