r6101 - trunk/data/qcsrc/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Tue Mar 10 11:19:38 EDT 2009


Author: div0
Date: 2009-03-10 11:19:37 -0400 (Tue, 10 Mar 2009)
New Revision: 6101

Modified:
   trunk/data/qcsrc/client/movetypes.qc
Log:
fix a typo in movetypes.qc that can cause entities to leave onground state


Modified: trunk/data/qcsrc/client/movetypes.qc
===================================================================
--- trunk/data/qcsrc/client/movetypes.qc	2009-03-10 09:35:37 UTC (rev 6100)
+++ trunk/data/qcsrc/client/movetypes.qc	2009-03-10 15:19:37 UTC (rev 6101)
@@ -214,7 +214,7 @@
 {
 	if(self.move_flags & FL_ONGROUND)
 	{
-		if(self.velocity_z >= 1/32)
+		if(self.move_velocity_z >= 1/32)
 			self.move_flags &~= FL_ONGROUND;
 		else if(!self.move_groundentity)
 			return;




More information about the nexuiz-commits mailing list