mirror of
				https://github.com/luanti-org/minetest_game.git
				synced 2025-11-04 09:15:29 +01:00 
			
		
		
		
	Rename intersects_protection to is_area_protected
This commit is contained in:
		@@ -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,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user