}
int proj_team = ReadByte();
- this.team = proj_team - 1;
if(teamplay)
{
+ this.team = proj_team - 1;
if(proj_team)
this.colormap = (this.team) * 0x11; // note: team - 1 on server (client uses different numbers)
else
this.colormap |= BIT(10); // RENDER_COLORMAPPED
}
else
+ {
+ this.team = 0;
this.colormap = proj_team;
+ }
// TODO: projectiles use glowmaps for their color, not teams
#if 0
if(this.colormap > 0)
{
#if 1
this.clientcolors = clr;
- this.team = (clr & 15) + 1;
+ if(teamplay)
+ this.team = (clr & 15) + 1;
+ else
+ this.team = 0;
#else
builtin_setcolor(this, clr);
#endif