[nexuiz-commits] r7203 - trunk/data/qcsrc/common

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sun Jul 12 08:11:56 EDT 2009


Author: div0
Date: 2009-07-12 08:11:55 -0400 (Sun, 12 Jul 2009)
New Revision: 7203

Modified:
   trunk/data/qcsrc/common/mapinfo.qc
Log:
use -1 as "unknown skill"


Modified: trunk/data/qcsrc/common/mapinfo.qc
===================================================================
--- trunk/data/qcsrc/common/mapinfo.qc	2009-07-12 12:06:48 UTC (rev 7202)
+++ trunk/data/qcsrc/common/mapinfo.qc	2009-07-12 12:11:55 UTC (rev 7203)
@@ -616,7 +616,7 @@
 		if(MapInfo_Map_supportedGametypes & MAPINFO_TYPE_RACE)            fputs(fh, "type rc 20 5 7 15\n");
 		if(MapInfo_Map_supportedGametypes & MAPINFO_TYPE_ONSLAUGHT)       fputs(fh, "type ons 20\n");
 		if(MapInfo_Map_supportedGametypes & MAPINFO_TYPE_NEXBALL)         fputs(fh, "type nexball 5 20\n");
-		if(MapInfo_Map_supportedGametypes & MAPINFO_TYPE_CTS)             fputs(fh, "type cts 20 0\n");
+		if(MapInfo_Map_supportedGametypes & MAPINFO_TYPE_CTS)             fputs(fh, "type cts 20 -1\n");
 
 		fh2 = fopen(strcat("scripts/", pFilename, ".arena"), FILE_READ);
 		if(fh2 >= 0)



More information about the nexuiz-commits mailing list