r3226 - trunk/data/qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Tue Jan 22 15:55:50 EST 2008


Author: div0
Date: 2008-01-22 15:55:50 -0500 (Tue, 22 Jan 2008)
New Revision: 3226

Modified:
   trunk/data/qcsrc/server/mode_onslaught.qc
Log:
oops, one more of these


Modified: trunk/data/qcsrc/server/mode_onslaught.qc
===================================================================
--- trunk/data/qcsrc/server/mode_onslaught.qc	2008-01-22 20:51:42 UTC (rev 3225)
+++ trunk/data/qcsrc/server/mode_onslaught.qc	2008-01-22 20:55:50 UTC (rev 3226)
@@ -503,7 +503,11 @@
 	{
 		sound(self, CHAN_AUTO, "sound/weapons/grenade_impact.wav", 1, ATTN_NORM);
 		pointparticles(particleeffectnum("onslaught_controlpoint_explosion"), self.origin, '0 0 0', 1);
-		bprint(ColoredTeamName(self.team), " ", self.message, " control point destroyed by ", ColoredTeamName(attacker.team), "\n");
+		{
+			string t;
+			t = ColoredTeamName(attacker.team);
+			bprint(ColoredTeamName(self.team), " ", self.message, " control point destroyed by ", t, "\n");
+		}
 		self.owner.goalentity = world;
 		self.owner.islinked = FALSE;
 		self.owner.iscaptured = FALSE;




More information about the nexuiz-commits mailing list