From b1a0086daee32b754ec4849984d104110a40fe4c Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 13 Jul 2012 19:26:27 +0900 Subject: [PATCH] Fix the "missing" grenades in nq demos (gl). Actually, they were microscoping (scale 0!) --- nq/source/cl_parse.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/nq/source/cl_parse.c b/nq/source/cl_parse.c index 35c210bd0..2b9597e8a 100644 --- a/nq/source/cl_parse.c +++ b/nq/source/cl_parse.c @@ -570,16 +570,16 @@ CL_ParseUpdate (int bits) if (bits & U_LERPFINISH) { MSG_ReadByte (net_message); //FIXME ignored for now. see fitzquake } - state->scale = baseline->scale; - state->glow_size = baseline->glow_size; - state->glow_color = baseline->glow_color; - state->colormod = baseline->colormod; + state->scale = 16; + state->glow_size = 0; + state->glow_color = 254; + state->colormod = 255; } else { - state->alpha = baseline->alpha; - state->scale = baseline->scale; - state->glow_size = baseline->glow_size; - state->glow_color = baseline->glow_color; - state->colormod = baseline->colormod; + baseline->alpha = 255; + state->scale = 16; + state->glow_size = 0; + state->glow_color = 254; + state->colormod = 255; } state->modelindex = modnum;