mirror of
https://github.com/minetest-mods/lightning.git
synced 2025-01-09 09:20:20 +01:00
Fire: omit sounds if sound API not supported by lame fire mods :)
tenplus1's version of the fire mod removes all sound support. This code makes this mod work if people are using his version of the fire mod.
This commit is contained in:
parent
2743d4a1d6
commit
846079370f
4
init.lua
4
init.lua
@ -200,7 +200,9 @@ minetest.register_node("lightning:dying_flame", {
|
|||||||
|
|
||||||
on_construct = function(pos)
|
on_construct = function(pos)
|
||||||
minetest.get_node_timer(pos):start(rng:next(20, 40))
|
minetest.get_node_timer(pos):start(rng:next(20, 40))
|
||||||
minetest.after(0.5, fire.on_flame_add_at, pos)
|
if fire and fire.on_flame_add_at then
|
||||||
|
minetest.after(0.5, fire.on_flame_add_at, pos)
|
||||||
|
end
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user