From: Samual Lenks Date: Mon, 29 Apr 2013 22:19:02 +0000 (-0400) Subject: Update debug print X-Git-Tag: xonotic-v0.7.0~50^2~10 X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=commitdiff_plain;h=86f08a1b2ee656e111c3d1e031bdef0a56e9aab9 Update debug print --- diff --git a/qcsrc/client/Main.qc b/qcsrc/client/Main.qc index 9843033a1..f23b5bc0b 100644 --- a/qcsrc/client/Main.qc +++ b/qcsrc/client/Main.qc @@ -708,7 +708,7 @@ void Ent_ReadSpawnPoint(float is_new) self.origin_y = ReadShort(); self.origin_z = ReadShort(); - //self.colormod = colormapPaletteColor(self.team - 1, FALSE); + self.colormod = '200 0 0'; //colormapPaletteColor(self.team - 1, FALSE); //setsize(self, PL_MIN, PL_MAX); @@ -721,7 +721,7 @@ void Ent_ReadSpawnPoint(float is_new) self.movetype = MOVETYPE_NOCLIP; self.draw = Spawn_Draw; - print(ftos(is_new), " - read a spawnpoint at ", vtos(self.origin), ", bitches.\n"); + print(sprintf("Ent_ReadSpawnPoint(is_new = %d); origin = %s, team = %d (%s)\n", is_new, vtos(self.origin), self.team, "foobar")); } // CSQC_Ent_Update : Called every frame that the server has indicated an update to the SSQC / CSQC entity has occured.