]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
CopyBody: unlink the color from the player slot when cloning
authorRudolf Polzer <divverent@xonotic.org>
Thu, 27 Oct 2011 08:00:48 +0000 (10:00 +0200)
committerRudolf Polzer <divverent@xonotic.org>
Thu, 27 Oct 2011 08:00:48 +0000 (10:00 +0200)
qcsrc/server/cl_client.qc
qcsrc/server/cl_player.qc

index 4e302e364f51544e43d629627cb6ef31336e649e..71bf53a619e536675faa303849acdacb906b22ef 100644 (file)
@@ -1968,7 +1968,9 @@ 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;
+               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
                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);
index f9fb0aa61ebd0459f1621ec91074021447dc5468..532b67aef7714555b6d93446c23f6e9756279c26 100644 (file)
@@ -186,6 +186,9 @@ void CopyBody(float keepvelocity)
 
        Drag_MoveDrag(oldself, self);
 
+       if(self.colormap <= maxclients && self.colormap > 0)
+               self.colormap = 1024 + self.clientcolors;
+
        self = oldself;
 }