Add protection to TNT (by @tenplus1)

master
BlockMen 2014-07-13 19:20:20 +02:00
parent c993e14084
commit 3180bdfe6c
1 changed files with 5 additions and 1 deletions

View File

@ -37,7 +37,11 @@ local add_drop = function(drops, pos, item)
end
end
local destroy = function(drops, pos, last, fast)
local function destroy(drops, pos, last, fast)
if minetest.is_protected(pos, "") then
return
end
local nodename = minetest.get_node(pos).name
if nodename ~= "air" then
minetest.remove_node(pos, (fast and 1 or 0))