r5582 - trunk/data/qcsrc/client
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Fri Jan 16 16:18:01 EST 2009
Author: div0
Date: 2009-01-16 16:17:53 -0500 (Fri, 16 Jan 2009)
New Revision: 5582
Modified:
trunk/data/qcsrc/client/movetypes.qc
Log:
fix MOVETYPE_NONE
Modified: trunk/data/qcsrc/client/movetypes.qc
===================================================================
--- trunk/data/qcsrc/client/movetypes.qc 2009-01-16 21:11:07 UTC (rev 5581)
+++ trunk/data/qcsrc/client/movetypes.qc 2009-01-16 21:17:53 UTC (rev 5582)
@@ -264,7 +264,7 @@
self.avelocity = self.move_avelocity;
- if(dt > 0)
+ if(dt > 0 && self.move_movetype != MOVETYPE_NONE)
{
// now continue the move from move_time to time
self.velocity = self.move_velocity;
More information about the nexuiz-commits
mailing list