From a7a29c0907a92a62a418c3234b11e7e74e56aab8 Mon Sep 17 00:00:00 2001 From: Spoike Date: Tue, 8 Oct 2013 17:18:44 +0000 Subject: [PATCH] compile fix for webgl port's non-features. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4500 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/server/sv_phys.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/engine/server/sv_phys.c b/engine/server/sv_phys.c index a88fb4123..be93e582c 100644 --- a/engine/server/sv_phys.c +++ b/engine/server/sv_phys.c @@ -1929,7 +1929,9 @@ void WPhys_RunEntity (world_t *w, wedict_t *ent) case MOVETYPE_PHYSICS: if (WPhys_RunThink(w, ent)) World_LinkEdict (w, ent, true); +#ifdef USEODE w->ode.hasodeents = true; +#endif break; default: // SV_Error ("SV_Physics: bad movetype %i on %s", (int)ent->v->movetype, PR_GetString(w->progs, ent->v->classname));