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

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sun Jun 21 15:31:17 EDT 2009


Author: div0
Date: 2009-06-21 15:31:17 -0400 (Sun, 21 Jun 2009)
New Revision: 7073

Modified:
   trunk/data/qcsrc/server/g_subs.qc
Log:
animinfo: treat more than 3 tokens not as error (as dpmodel writes that now to specify whether the scene is looped)


Modified: trunk/data/qcsrc/server/g_subs.qc
===================================================================
--- trunk/data/qcsrc/server/g_subs.qc	2009-06-21 11:14:35 UTC (rev 7072)
+++ trunk/data/qcsrc/server/g_subs.qc	2009-06-21 19:31:17 UTC (rev 7073)
@@ -56,7 +56,7 @@
 		return '0 1 2';
 	line = fgets(animfile);
 	c = tokenize_console(line);
-	if (c != 3)
+	if (c < 3)
 	{
 		animparseerror = TRUE;
 		return '0 1 2';



More information about the nexuiz-commits mailing list