Reverting some alien infestation checks that meant that no aliens would spawn if the event wanted two aliens, but there was only one candidate.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5531 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
petethegoat@gmail.com
2013-01-12 19:25:35 +00:00
parent 8d773e827c
commit 756ddd3b05

View File

@@ -25,7 +25,7 @@
var/list/candidates = get_alien_candidates()
while(spawncount > 0 && vents.len >= spawncount && candidates.len >= spawncount)
while(spawncount > 0 && vents.len && candidates.len)
var/obj/vent = pick(vents)
var/candidate = pick(candidates)