Battle: do not spawn UFO during Overtime

This commit is contained in:
James R 2024-01-06 00:55:20 -08:00
parent 4d334a2bb9
commit e58253a2b2

View file

@ -383,7 +383,7 @@ void K_RunPaperItemSpawners(void)
return; return;
} }
if (leveltime == g_battleufo.due) if (leveltime == g_battleufo.due && overtime == false)
{ {
Obj_SpawnBattleUFOFromSpawner(); Obj_SpawnBattleUFOFromSpawner();
} }