mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'bailhornset' into 'master'
Bail horn respects follower horn settings (fixes #251) Closes #251 See merge request kart-krew-dev/ring-racers!45
This commit is contained in:
commit
78b11e8306
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