From 9eff31474b4bf3dc0d742a2467710472fc44b18b Mon Sep 17 00:00:00 2001 From: An0n3m0us Date: Thu, 6 Aug 2020 18:34:49 +0100 Subject: [PATCH] Lower gain for furnace active sound --- mods/default/furnace.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/default/furnace.lua b/mods/default/furnace.lua index 8c8ae835..b63a8695 100644 --- a/mods/default/furnace.lua +++ b/mods/default/furnace.lua @@ -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