mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-21 06:43:17 -04:00
Half both sound volumes
This commit is contained in:
parent
4567b692d5
commit
177270baa4
1 changed files with 2 additions and 2 deletions
|
@ -156,7 +156,7 @@ local function furnace_node_timer(pos, elapsed)
|
|||
end
|
||||
-- Play cooling sound
|
||||
minetest.sound_play("default_cool_lava",
|
||||
{pos = pos, max_hear_distance = 16, gain = 0.05})
|
||||
{pos = pos, max_hear_distance = 16, gain = 0.025})
|
||||
else
|
||||
-- Item could not be cooked: probably missing fuel
|
||||
update = true
|
||||
|
@ -242,7 +242,7 @@ local function furnace_node_timer(pos, elapsed)
|
|||
result = true
|
||||
-- Play sound while the furnace is active
|
||||
minetest.sound_play("default_furnace_active",
|
||||
{pos = pos, max_hear_distance = 16, gain = 0.1})
|
||||
{pos = pos, max_hear_distance = 16, gain = 0.05})
|
||||
else
|
||||
if fuellist and not fuellist[1]:is_empty() then
|
||||
fuel_state = S("@1%", 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue