Merge pull request #21 from WumboSpasm/followers
Fix follower with ID 0 not appearing on track load
This commit is contained in:
commit
a329eddcba
1 changed files with 1 additions and 1 deletions
|
|
@ -1551,7 +1551,7 @@ static void SendNameAndColor(UINT8 n)
|
|||
K_KartResetPlayerColor(player);
|
||||
|
||||
// Update follower for local games:
|
||||
if (cv_follower[n].value >= -1 && cv_follower[n].value != player->followerskin)
|
||||
if (cv_follower[n].value >= -1)
|
||||
K_SetFollowerByNum(playernum, cv_follower[n].value);
|
||||
|
||||
player->followercolor = cv_followercolor[n].value;
|
||||
|
|
|
|||
Loading…
Reference in a new issue