Admin created cultists can now properly summon their Gods

Upon being made a cultist through admin means, the "summon spots" will now be generated, even if the game mode isn't cult. This allows admin created cultists to actually reach their goal of summoning their god, if it is what the admins told them to do.
This commit is contained in:
Eman
2019-05-02 15:35:40 +02:00
parent 3716e7876c
commit b27f084eb8
2 changed files with 11 additions and 0 deletions
@@ -177,6 +177,11 @@ client/proc/one_click_antag()
H = pick(candidates)
ticker.mode.add_cultist(H.mind)
candidates.Remove(H)
if(!summon_spots.len)
while(summon_spots.len < SUMMON_POSSIBILITIES)
var/area/summon = pick(return_sorted_areas() - summon_spots)
if(summon && is_station_level(summon.z) && summon.valid_territory)
summon_spots += summon
return 1
return 0