mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-11 07:59:08 +01:00
Merge pull request #390 from Dahlular/less-chaos
Removes Malfunctioning AI's Robot Army Objective
This commit is contained in:
@@ -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."
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user