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

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sat Jun 13 05:42:20 EDT 2009


Author: div0
Date: 2009-06-13 05:42:19 -0400 (Sat, 13 Jun 2009)
New Revision: 7019

Modified:
   trunk/data/qcsrc/server/bots_scripting.qc
Log:
bot script: change var placeholder from $ to @ to not confuse console parser


Modified: trunk/data/qcsrc/server/bots_scripting.qc
===================================================================
--- trunk/data/qcsrc/server/bots_scripting.qc	2009-06-12 22:59:39 UTC (rev 7018)
+++ trunk/data/qcsrc/server/bots_scripting.qc	2009-06-13 09:42:19 UTC (rev 7019)
@@ -70,7 +70,7 @@
 entity bot_getplace(string placename)
 {
 	entity e;
-	if(substring(placename, 0, 1) == "$")
+	if(substring(placename, 0, 1) == "@")
 	{
 		float i, p;
 		placename = substring(placename, 1, -1);



More information about the nexuiz-commits mailing list