Skip to content

Commit

Permalink
Update flag drop sounds
Browse files Browse the repository at this point in the history
  • Loading branch information
LoneWolfHT committed Jul 3, 2023
1 parent 48fcab4 commit e2e9864
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions mods/ctf/ctf_modebase/features.lua
Original file line number Diff line number Diff line change
Expand Up @@ -123,16 +123,16 @@ local function drop_flag(teamname)

if pteam then
if pteam == teamname then
minetest.sound_play("ctf_modebase_trumpet_negative", {
minetest.sound_play("ctf_modebase_drop_flag_negative", {
to_player = pname,
gain = 0.2,
pitch = 0.8,
gain = 0.4,
pitch = 1.0,
}, true)
else
minetest.sound_play("ctf_modebase_trumpet_positive", {
minetest.sound_play("ctf_modebase_drop_flag_positive", {
to_player = pname,
gain = 0.2,
pitch = 1.2,
gain = 0.4,
pitch = 1.0,
}, true)
end
end
Expand Down

0 comments on commit e2e9864

Please sign in to comment.