mirror of
https://github.com/minetest/minetest_game.git
synced 2024-11-05 23:33:51 +01:00
Add protection to TNT (by @tenplus1)
This commit is contained in:
parent
c993e14084
commit
3180bdfe6c
@ -37,7 +37,11 @@ local add_drop = function(drops, pos, item)
|
|||||||
end
|
end
|
||||||
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
|
local nodename = minetest.get_node(pos).name
|
||||||
if nodename ~= "air" then
|
if nodename ~= "air" then
|
||||||
minetest.remove_node(pos, (fast and 1 or 0))
|
minetest.remove_node(pos, (fast and 1 or 0))
|
||||||
|
Loading…
Reference in New Issue
Block a user