mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-06 08:11:06 +01:00
13 lines
233 B
Lua
13 lines
233 B
Lua
|
-- default function when mobs are blown up with TNT
|
||
|
local do_tnt = function(obj, damage)
|
||
|
|
||
|
obj.object:punch(obj.object, 1.0, {
|
||
|
full_punch_interval = 1.0,
|
||
|
damage_groups = {fleshy = damage},
|
||
|
}, nil)
|
||
|
|
||
|
return false, true, {}
|
||
|
end
|
||
|
|
||
|
|