mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 12:01:47 +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;
|
angle_t an;
|
||||||
fixed_t zoffs;
|
fixed_t zoffs;
|
||||||
fixed_t sx, sy, sz;
|
fixed_t sx, sy, sz;
|
||||||
INT16 color;
|
UINT16 color;
|
||||||
|
|
||||||
fixed_t bubble; // bubble scale (0 if no bubble)
|
fixed_t bubble; // bubble scale (0 if no bubble)
|
||||||
mobj_t *bmobj; // temp bubble mobj
|
mobj_t *bmobj; // temp bubble mobj
|
||||||
|
|
@ -3862,7 +3862,7 @@ static void P_HandleFollower(player_t *player)
|
||||||
default:
|
default:
|
||||||
|
|
||||||
color = player->followercolor;
|
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.
|
color = player->skincolor; // "Match" as fallback.
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue