diff --git a/src/zr/infect.inc b/src/zr/infect.inc index 5668146..3ab9a3d 100644 --- a/src/zr/infect.inc +++ b/src/zr/infect.inc @@ -362,6 +362,12 @@ InfectOnRoundFreezeEnd() KillTimer(tInfect); } + // If the zombie has spawned already (had to be through admin) then stop. + if (g_bZombieSpawned) + { + return; + } + // Get min and max times. new Float:infectspawntimemin = GetConVarFloat(g_hCvarsList[CVAR_INFECT_SPAWNTIME_MIN]); new Float:infectspawntimemax = GetConVarFloat(g_hCvarsList[CVAR_INFECT_SPAWNTIME_MAX]);