mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-30 03:32:58 +00:00
Bail horn respects follower horn settings (fixes #251)
This commit is contained in:
parent
daa6dbd667
commit
eb90b28c12
1 changed files with 1 additions and 1 deletions
|
|
@ -10814,7 +10814,7 @@ void K_KartPlayerThink(player_t *player, ticcmd_t *cmd)
|
|||
}
|
||||
|
||||
INT32 fls = K_GetEffectiveFollowerSkin(player);
|
||||
if (player->follower && fls >= 0 && fls < numfollowers)
|
||||
if (player->follower && fls >= 0 && fls < numfollowers && cv_karthorns.value)
|
||||
{
|
||||
const follower_t *fl = &followers[fls];
|
||||
S_StartSound(player->follower, fl->hornsound);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue