[nexuiz-commits] r7521 - trunk/data/qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Tue Aug 25 17:08:34 EDT 2009


Author: fruitiex
Date: 2009-08-25 17:08:32 -0400 (Tue, 25 Aug 2009)
New Revision: 7521

Modified:
   trunk/data/qcsrc/server/ctf.qc
Log:
more team cleanups by TH


Modified: trunk/data/qcsrc/server/ctf.qc
===================================================================
--- trunk/data/qcsrc/server/ctf.qc	2009-08-25 21:03:59 UTC (rev 7520)
+++ trunk/data/qcsrc/server/ctf.qc	2009-08-25 21:08:32 UTC (rev 7521)
@@ -690,7 +690,7 @@
 
 /*QUAKED spawnfunc_info_player_team3 (1 0 0) (-16 -16 -24) (16 16 24)
 CTF Starting point for a player in
-team three (Magenta).
+team three (Yellow).
 
 Keys:
 "angle"
@@ -703,14 +703,14 @@
 		remove(self);
 		return;
 	}
-	self.team = COLOR_TEAM3; // purple
+	self.team = COLOR_TEAM3; // yellow
 	spawnfunc_info_player_deathmatch();
 };
 
 
 /*QUAKED spawnfunc_info_player_team4 (1 0 0) (-16 -16 -24) (16 16 24)
 CTF Starting point for a player in
-team four (Yellow).
+team four (Magenta).
 
 Keys:
 "angle"
@@ -723,7 +723,7 @@
 		remove(self);
 		return;
 	}
-	self.team = COLOR_TEAM4; // yellow
+	self.team = COLOR_TEAM4; // purple
 	spawnfunc_info_player_deathmatch();
 };
 



More information about the nexuiz-commits mailing list