Fixes abductor teams getting assigned to same pod (#32859)
* Fixes abductors getting assigned to same team * Remove explicit null return
This commit is contained in:
committed by
CitadelStationBot
parent
94046f89da
commit
70c7996986
@@ -26,7 +26,11 @@
|
||||
var/mob/living/carbon/human/agent = makeBody(pick_n_take(candidates))
|
||||
var/mob/living/carbon/human/scientist = makeBody(pick_n_take(candidates))
|
||||
|
||||
GM.post_setup_team(GM.make_abductor_team(agent.mind, scientist.mind))
|
||||
var/team = GM.make_abductor_team(agent.mind, scientist.mind)
|
||||
if(!team)
|
||||
return MAP_ERROR
|
||||
|
||||
GM.post_setup_team(team)
|
||||
|
||||
spawned_mobs += list(agent, scientist)
|
||||
return SUCCESSFUL_SPAWN
|
||||
|
||||
Reference in New Issue
Block a user