mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-06 16:21:05 +01:00
12 lines
233 B
Lua
12 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
|
|
|
|
|