mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-12 09:42:21 +00:00
forgot to change something back
This commit is contained in:
parent
f96f7c6ba3
commit
647dfd98fb
1 changed files with 2 additions and 2 deletions
|
|
@ -3804,7 +3804,7 @@ static void P_HandleFollower(player_t *player)
|
|||
angle_t an;
|
||||
fixed_t zoffs;
|
||||
fixed_t sx, sy, sz;
|
||||
INT16 color;
|
||||
UINT16 color;
|
||||
|
||||
fixed_t bubble; // bubble scale (0 if no bubble)
|
||||
mobj_t *bmobj; // temp bubble mobj
|
||||
|
|
@ -3862,7 +3862,7 @@ static void P_HandleFollower(player_t *player)
|
|||
default:
|
||||
|
||||
color = player->followercolor;
|
||||
if (color < -2 || !color || color > MAXSKINCOLORS+2) // Make sure this isn't garbage
|
||||
if (!color || color > MAXSKINCOLORS+2) // Make sure this isn't garbage
|
||||
color = player->skincolor; // "Match" as fallback.
|
||||
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue