Merge branch 'biomes'

This commit is contained in:
Wuzzy 2017-08-21 03:43:07 +02:00
commit 4f03f1c516
85 changed files with 4562 additions and 703 deletions

View file

@ -71,8 +71,8 @@ minetest.register_node("mcl_tnt:tnt", {
mesecons = {effector = {
action_on = tnt.ignite
}},
_on_ignite = function(pos, player)
tnt.ignite(pos)
_on_ignite = function(player, pointed_thing)
tnt.ignite(pointed_thing.under)
end,
sounds = sounds,
})