[nexuiz-commits] r7198 - trunk/data/qcsrc/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sat Jul 11 17:07:20 EDT 2009


Author: div0
Date: 2009-07-11 17:07:17 -0400 (Sat, 11 Jul 2009)
New Revision: 7198

Modified:
   trunk/data/qcsrc/client/gibs.qc
Log:
cl_gentle 2: work properly even in sv_gentle 1 mode


Modified: trunk/data/qcsrc/client/gibs.qc
===================================================================
--- trunk/data/qcsrc/client/gibs.qc	2009-07-11 21:05:26 UTC (rev 7197)
+++ trunk/data/qcsrc/client/gibs.qc	2009-07-11 21:07:17 UTC (rev 7198)
@@ -136,8 +136,10 @@
 	vel = decompressShortVector(ReadShort());
 
 	if(cvar("cl_gentle"))
+		type |= 0x80; // set gentle bit
+
+	if(type & 0x80)
 	{
-		type |= 0x80; // set gentle bit
 		if(cvar("cl_gentle") > 1)
 			gentle_prefix = "";
 		else



More information about the nexuiz-commits mailing list