]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
respawn ghosts: don't munge colormap
authorRudolf Polzer <divverent@alientrap.org>
Mon, 9 Jan 2012 18:16:54 +0000 (19:16 +0100)
committerRudolf Polzer <divverent@alientrap.org>
Mon, 9 Jan 2012 18:16:54 +0000 (19:16 +0100)
qcsrc/server/cl_client.qc

index 78bffdc9e581b4b5ca808dcae020430aa180a7dc..e5f6a7b36b8bad1da8b3f673ec9b7d0935b8af21 100644 (file)
@@ -1752,7 +1752,6 @@ void UpdateChatBubble()
        else self.colormod = '1 1 1';
 }*/
 
-.float oldcolormap;
 void respawn(void)
 {
        if(self.alpha >= 0 && autocvar_g_respawn_ghosts)
@@ -1763,20 +1762,14 @@ void respawn(void)
                self.velocity = '0 0 1' * autocvar_g_respawn_ghosts_speed;
                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 = 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);
        }
 
        CopyBody(1);
+
        self.effects |= EF_NODRAW; // prevent another CopyBody
-       if(self.oldcolormap)
-       {
-               self.colormap = self.oldcolormap;
-               self.oldcolormap = 0;
-       }
        PutClientInServer();
 }