diff --git a/source/server/ai/zombie_core.qc b/source/server/ai/zombie_core.qc index 95a18b8..3f48a1f 100644 --- a/source/server/ai/zombie_core.qc +++ b/source/server/ai/zombie_core.qc @@ -1531,6 +1531,11 @@ float() spawn_a_zombieA = zombie_spawn = find(zombie_spawn, classname, "spawn_zombie"); } + if (zombie_spawn == world && cvar("developer")) { + bprint(PRINT_HIGH, "No active spawn point exists! Bailing!\n"); + return false; + } + // prompt stage 2: the actual spawning of the zombie. spawn_a_zombieB(zombie_spawn); spawn_delay = time + delay_at_round;