From 86f08a1b2ee656e111c3d1e031bdef0a56e9aab9 Mon Sep 17 00:00:00 2001 From: Samual Lenks Date: Mon, 29 Apr 2013 18:19:02 -0400 Subject: [PATCH] Update debug print --- qcsrc/client/Main.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. -- 2.39.2