Merge pull request #21 from WumboSpasm/followers

Fix follower with ID 0 not appearing on track load
This commit is contained in:
NepDisk 2024-09-18 10:15:13 -04:00 committed by GitHub
commit a329eddcba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;