From 154d8f553981f6c512f1cf72de01141535e0990c Mon Sep 17 00:00:00 2001 From: Dahlular Date: Wed, 12 Aug 2020 22:39:28 -0600 Subject: [PATCH] Removes robot_army objective --- code/game/gamemodes/objective.dm | 4 ++-- code/modules/antagonists/traitor/datum_traitor.dm | 8 ++------ 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm index f6b1def6..749860ef 100644 --- a/code/game/gamemodes/objective.dm +++ b/code/game/gamemodes/objective.dm @@ -286,7 +286,7 @@ GLOBAL_LIST_EMPTY(objectives) if(H.dna.species.id != "human") return FALSE return TRUE - +/* /datum/objective/robot_army explanation_text = "Have at least eight active cyborgs synced to you." martyr_compatible = 0 @@ -302,7 +302,7 @@ GLOBAL_LIST_EMPTY(objectives) if(R.stat != DEAD) counter++ return counter >= 8 - +*/ /datum/objective/escape explanation_text = "Escape on the shuttle or an escape pod alive and without being in custody." team_explanation_text = "Have all members of your team escape on a shuttle or pod alive, without being in custody." diff --git a/code/modules/antagonists/traitor/datum_traitor.dm b/code/modules/antagonists/traitor/datum_traitor.dm index f72d3325..c5c59156 100644 --- a/code/modules/antagonists/traitor/datum_traitor.dm +++ b/code/modules/antagonists/traitor/datum_traitor.dm @@ -172,7 +172,7 @@ /datum/antagonist/traitor/proc/forge_single_AI_objective() .=1 - var/special_pick = rand(1,4) + var/special_pick = rand(1,3) switch(special_pick) if(1) var/datum/objective/block/block_objective = new @@ -182,11 +182,7 @@ var/datum/objective/purge/purge_objective = new purge_objective.owner = owner add_objective(purge_objective) - if(3) - var/datum/objective/robot_army/robot_objective = new - robot_objective.owner = owner - add_objective(robot_objective) - if(4) //Protect and strand a target + if(3) //Protect and strand a target var/datum/objective/protect/yandere_one = new yandere_one.owner = owner add_objective(yandere_one)