Skip to content

Commit

Permalink
Make flag drop sounds quieter
Browse files Browse the repository at this point in the history
  • Loading branch information
LoneWolfHT committed Nov 1, 2023
1 parent 917e7e2 commit 797abe0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mods/ctf/ctf_modebase/features.lua
Original file line number Diff line number Diff line change
Expand Up @@ -151,13 +151,13 @@ local function drop_flag(teamname)
if pteam == teamname then
minetest.sound_play("ctf_modebase_drop_flag_negative", {
to_player = pname,
gain = 0.4,
gain = 0.2,
pitch = 1.0,
}, true)
else
minetest.sound_play("ctf_modebase_drop_flag_positive", {
to_player = pname,
gain = 0.4,
gain = 0.2,
pitch = 1.0,
}, true)
end
Expand Down

0 comments on commit 797abe0

Please sign in to comment.