From 687c26e21973c1e9b9dbe98180ecdf0946d41cd0 Mon Sep 17 00:00:00 2001 From: AJ Martinez Date: Fri, 22 Sep 2023 18:27:44 -0700 Subject: [PATCH] Play horns at full volume for targeted players --- src/k_follower.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/k_follower.c b/src/k_follower.c index b1e4261b0..bed6518dc 100644 --- a/src/k_follower.c +++ b/src/k_follower.c @@ -773,7 +773,8 @@ void K_FollowerHornTaunt(player_t *taunter, player_t *victim) honk->fuse = TICRATE/2; honk->renderflags |= RF_DONTDRAW; - S_StartSound(taunter->follower, fl->hornsound); + if (P_IsDisplayPlayer(victim) || P_IsDisplayPlayer(taunter)) + S_StartSound(NULL, fl->hornsound); honk->flags2 |= MF2_AMBUSH; }