From 910fa3cf4cd8506adab28b5bc9477becc96099e6 Mon Sep 17 00:00:00 2001 From: RatFromTheJungle <62520989+RatFromTheJungle@users.noreply.github.com> Date: Sun, 24 Nov 2024 08:34:31 -0500 Subject: [PATCH] Disables self-assigning objectives for changeling, and traitor. (#4599) * Update datum_traitor.dm * Update changeling.dm * Update changeling.dm * Update changeling.dm * Update datum_traitor.dm * Apply suggestions from code review --------- Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com> --- code/modules/antagonists/changeling/changeling.dm | 2 +- code/modules/antagonists/traitor/datum_traitor.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/antagonists/changeling/changeling.dm b/code/modules/antagonists/changeling/changeling.dm index 3f3b49761e7e..0a92247f768c 100644 --- a/code/modules/antagonists/changeling/changeling.dm +++ b/code/modules/antagonists/changeling/changeling.dm @@ -11,7 +11,7 @@ hijack_speed = 0.5 ui_name = "AntagInfoChangeling" suicide_cry = "FOR THE HIVE!!" - can_assign_self_objectives = TRUE + can_assign_self_objectives = FALSE // NOVA EDIT CHANGE - Too loose of a cannon, and doesn't have staff sign off - ORIGINAL: can_assign_self_objectives = TRUE default_custom_objective = "Consume the station's most valuable genomes." hardcore_random_bonus = TRUE stinger_sound = 'sound/music/antag/ling_alert.ogg' diff --git a/code/modules/antagonists/traitor/datum_traitor.dm b/code/modules/antagonists/traitor/datum_traitor.dm index 57ca4540612e..3b10931104ef 100644 --- a/code/modules/antagonists/traitor/datum_traitor.dm +++ b/code/modules/antagonists/traitor/datum_traitor.dm @@ -14,7 +14,7 @@ ui_name = "AntagInfoTraitor" suicide_cry = "FOR THE SYNDICATE!!" preview_outfit = /datum/outfit/traitor - can_assign_self_objectives = TRUE + can_assign_self_objectives = FALSE // NOVA EDIT CHANGE - Too loose of a cannon, and doesn't have staff sign off - ORIGINAL: can_assign_self_objectives = TRUE default_custom_objective = "Perform an overcomplicated heist on valuable Nanotrasen assets." hardcore_random_bonus = TRUE stinger_sound = 'sound/music/antag/traitor/tatoralert.ogg'