From 287b68565e118e90f3d36498681f2b287a4e6d20 Mon Sep 17 00:00:00 2001 From: havoc Date: Mon, 17 Jan 2005 22:11:16 +0000 Subject: [PATCH] now supports nextthink < 0 again... sigh git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4940 d7cf8633-e32d-0410-b094-e92efae38249 --- sv_phys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sv_phys.c b/sv_phys.c index 6145c080..9f7a0adc 100644 --- a/sv_phys.c +++ b/sv_phys.c @@ -1450,7 +1450,7 @@ void SV_Physics (void) case MOVETYPE_FLY: case MOVETYPE_FLYMISSILE: // LordHavoc: manually inlined SV_RunThink here - if (ent->v->nextthink && ent->v->nextthink <= nexttime) + if (ent->v->nextthink > 0 && ent->v->nextthink <= nexttime) { /* SV_RunThink -- 2.39.2