From 768c97205a5c238e7f0d6486fb5437dd05a26601 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 22 Nov 2017 03:10:01 +0100 Subject: [PATCH] Reduce fire extinguish sound --- mods/ENVIRONMENT/mcl_weather/rain.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ENVIRONMENT/mcl_weather/rain.lua b/mods/ENVIRONMENT/mcl_weather/rain.lua index 354a1f1d6..ad3746517 100644 --- a/mods/ENVIRONMENT/mcl_weather/rain.lua +++ b/mods/ENVIRONMENT/mcl_weather/rain.lua @@ -194,7 +194,7 @@ if mcl_weather.allow_abm then if mcl_weather.rain.raining and mcl_weather.rain.extinguish_fire then if mcl_weather.is_outdoor(pos) then minetest.remove_node(pos) - minetest.sound_play("fire_extinguish_flame", {pos = pos, max_hear_distance = 16, gain = 0.15}) + minetest.sound_play("fire_extinguish_flame", {pos = pos, max_hear_distance = 8, gain = 0.1}) end end end,