Spawning fire now respects protection

This commit is contained in:
Wuzzy 2019-02-08 23:17:20 +01:00
parent 9817b38904
commit b729ffc604
2 changed files with 15 additions and 0 deletions

View file

@ -15,6 +15,13 @@ minetest.register_craftitem("mcl_fire:fire_charge", {
end
end
-- Check protection
local protname = user:get_player_name()
if minetest.is_protected(pointed_thing.under, protname) then
minetest.record_protection_violation(pointed_thing.under, protname)
return itemstack
end
-- Ignite/light fire
if pointed_thing.type == "node" then
local nodedef = minetest.registered_nodes[node.name]