mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 14:20:59 +00:00
Fix the "missing" grenades in nq demos (gl).
Actually, they were microscoping (scale 0!)
This commit is contained in:
parent
e657390ab5
commit
b1a0086dae
1 changed files with 9 additions and 9 deletions
|
@ -570,16 +570,16 @@ CL_ParseUpdate (int bits)
|
||||||
if (bits & U_LERPFINISH) {
|
if (bits & U_LERPFINISH) {
|
||||||
MSG_ReadByte (net_message); //FIXME ignored for now. see fitzquake
|
MSG_ReadByte (net_message); //FIXME ignored for now. see fitzquake
|
||||||
}
|
}
|
||||||
state->scale = baseline->scale;
|
state->scale = 16;
|
||||||
state->glow_size = baseline->glow_size;
|
state->glow_size = 0;
|
||||||
state->glow_color = baseline->glow_color;
|
state->glow_color = 254;
|
||||||
state->colormod = baseline->colormod;
|
state->colormod = 255;
|
||||||
} else {
|
} else {
|
||||||
state->alpha = baseline->alpha;
|
baseline->alpha = 255;
|
||||||
state->scale = baseline->scale;
|
state->scale = 16;
|
||||||
state->glow_size = baseline->glow_size;
|
state->glow_size = 0;
|
||||||
state->glow_color = baseline->glow_color;
|
state->glow_color = 254;
|
||||||
state->colormod = baseline->colormod;
|
state->colormod = 255;
|
||||||
}
|
}
|
||||||
|
|
||||||
state->modelindex = modnum;
|
state->modelindex = modnum;
|
||||||
|
|
Loading…
Reference in a new issue