From: Rudolf Polzer Date: Thu, 27 Oct 2011 08:01:44 +0000 (+0200) Subject: set proper colormap value for respawn ghosts X-Git-Tag: xonotic-v0.6.0~35^2~78^2~3 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=ddc014208ca0ec3dbe33c280e77c9a14c45786d4;p=xonotic%2Fxonotic-data.pk3dir.git set proper colormap value for respawn ghosts --- diff --git a/qcsrc/server/cl_client.qc b/qcsrc/server/cl_client.qc index 71bf53a61..aaca49da6 100644 --- a/qcsrc/server/cl_client.qc +++ b/qcsrc/server/cl_client.qc @@ -1968,9 +1968,7 @@ void respawn(void) self.avelocity = randomvec() * autocvar_g_respawn_ghosts_speed * 3 - randomvec() * autocvar_g_respawn_ghosts_speed * 3; self.effects |= EF_ADDITIVE; self.oldcolormap = self.colormap; - self.colormap = 512; // FIXME this colormap value is ILLEGAL: - // Con_DPrintf("CL_ValidateState: colormap (%i) > cl.maxclients (%i)\n", s->colormap, cl.maxclients); - // I think you want to use 0 + self.colormap = 0; // this originally was 512, but raises a warning in the engine, so get rid of it pointparticles(particleeffectnum("respawn_ghost"), self.origin, '0 0 0', 1); if(autocvar_g_respawn_ghosts_maxtime) SUB_SetFade (self, time + autocvar_g_respawn_ghosts_maxtime / 2 + random () * (autocvar_g_respawn_ghosts_maxtime - autocvar_g_respawn_ghosts_maxtime / 2), 1.5);