Makes from-ghost midrounds not roll if no ghosts

This commit is contained in:
Putnam3145
2022-08-31 15:05:37 -07:00
parent b0c92b152f
commit 11a28d2d3f

View File

@@ -87,6 +87,8 @@
var/threat = round(mode.threat_level/10)
if (job_check < required_enemies[threat])
return FALSE
if (length(dead_players) + length(list_observers) == 0)
return FALSE
return TRUE
/datum/dynamic_ruleset/midround/from_ghosts/execute()