Fix TNT being undiggable, fix TNT drop

This commit is contained in:
Wuzzy 2017-01-21 14:32:23 +01:00
parent e27cf666a9
commit 5d1bb3a8e8
2 changed files with 2 additions and 1 deletions

View file

@ -42,10 +42,10 @@ minetest.register_node("tnt:tnt", {
tiles = {"default_tnt_top.png", "default_tnt_bottom.png",
"default_tnt_side.png", "default_tnt_side.png",
"default_tnt_side.png", "default_tnt_side.png"},
drop = '', -- Get nothing
is_ground_content = false,
stack_max = 64,
description = "TNT",
groups = { dig_immediate = 3, tnt = 1, },
mesecons = {effector = {
action_on = tnt.ignite
}},