From 3180bdfe6ce40a6f155329078884e797c310b8f1 Mon Sep 17 00:00:00 2001 From: BlockMen Date: Sun, 13 Jul 2014 19:20:20 +0200 Subject: [PATCH] Add protection to TNT (by @tenplus1) --- mods/tnt/init.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mods/tnt/init.lua b/mods/tnt/init.lua index 4da0713d..2f2dbbe3 100644 --- a/mods/tnt/init.lua +++ b/mods/tnt/init.lua @@ -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))