From 01781eacc191812019f4e6d09da208c6cb97726b Mon Sep 17 00:00:00 2001 From: s1lent Date: Sat, 30 Dec 2017 19:01:27 +0700 Subject: [PATCH] Fix missed else-statement related #555 --- rehlds/engine/sv_phys.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/rehlds/engine/sv_phys.cpp b/rehlds/engine/sv_phys.cpp index 6d57cbf..6a92721 100644 --- a/rehlds/engine/sv_phys.cpp +++ b/rehlds/engine/sv_phys.cpp @@ -217,6 +217,7 @@ void SV_FlyMove(edict_t *ent, float time, float bounce) #ifdef REHLDS_FIXES if (ent->v.solid == SOLID_TRIGGER || ent->v.solid == SOLID_NOT) moveType = MOVE_NOMONSTERS; + else #endif moveType = MOVE_NORMAL;