From 177270baa4150f168430633f30c3f8c57c8896ff Mon Sep 17 00:00:00 2001 From: An0n3m0us Date: Wed, 29 Jan 2020 10:49:20 +0000 Subject: [PATCH] Half both sound volumes --- mods/default/furnace.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/default/furnace.lua b/mods/default/furnace.lua index c24e400a..91b877ac 100644 --- a/mods/default/furnace.lua +++ b/mods/default/furnace.lua @@ -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)