mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-21 06:43:17 -04:00
Lower gain for furnace active sound
This commit is contained in:
parent
76331929fe
commit
9eff31474b
1 changed files with 1 additions and 1 deletions
|
@ -247,7 +247,7 @@ local function furnace_node_timer(pos, elapsed)
|
|||
-- Play sound every 5 seconds while the furnace is active
|
||||
if timer_elapsed == 0 or (timer_elapsed+1) % 5 == 0 then
|
||||
minetest.sound_play("default_furnace_active",
|
||||
{pos = pos, max_hear_distance = 16, gain = 1}, true)
|
||||
{pos = pos, max_hear_distance = 16, gain = 0.5}, true)
|
||||
end
|
||||
else
|
||||
if fuellist and not fuellist[1]:is_empty() then
|
||||
|
|
Loading…
Add table
Reference in a new issue