diff --git a/regamedll/dlls/multiplay_gamerules.cpp b/regamedll/dlls/multiplay_gamerules.cpp index 0ae43dc4..c6a965dc 100644 --- a/regamedll/dlls/multiplay_gamerules.cpp +++ b/regamedll/dlls/multiplay_gamerules.cpp @@ -2220,7 +2220,7 @@ void CHalfLifeMultiplay::PickNextVIP() while ((pEntity = UTIL_FindEntityByClassname(pEntity, "player"))) { - if (!FNullEnt(pEntity->edict())) + if (FNullEnt(pEntity->edict())) break; if (pEntity->IsDormant()) @@ -2258,7 +2258,7 @@ void CHalfLifeMultiplay::PickNextVIP() while ((pEntity = UTIL_FindEntityByClassname(pEntity, "player"))) { - if (!FNullEnt(pEntity->edict())) + if (FNullEnt(pEntity->edict())) break; if (pEntity->IsDormant())