From d4b738bfe623b8b35544adaa69f011cd24ed911a Mon Sep 17 00:00:00 2001 From: DGamerL <108773801+DGamerL@users.noreply.github.com> Date: Sun, 23 Nov 2025 04:03:35 +0100 Subject: [PATCH] Makes infiltrate sec and destroy AI hidden delayed objectives (#30969) * Untested greatness * Update code/game/gamemodes/objective.dm Signed-off-by: DGamerL <108773801+DGamerL@users.noreply.github.com> --------- Signed-off-by: DGamerL <108773801+DGamerL@users.noreply.github.com> --- code/game/gamemodes/objective.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm index 90f8c417a59..31445f30427 100644 --- a/code/game/gamemodes/objective.dm +++ b/code/game/gamemodes/objective.dm @@ -297,6 +297,7 @@ GLOBAL_LIST_INIT(potential_theft_objectives, (subtypesof(/datum/theft_objective) /datum/objective/infiltrate_sec name = "Infiltrate Security" explanation_text = "Your objective is to infiltrate the ranks of the Security department undetected, be it by being lawfully hired into it or by replacing one of its members." + delayed_objective_text = "Your objective is unknown. You will receive further information in a few minutes" needs_target = FALSE completed = TRUE @@ -913,7 +914,7 @@ GLOBAL_LIST_INIT(potential_theft_objectives, (subtypesof(/datum/theft_objective) /datum/objective/destroy name = "Destroy AI" martyr_compatible = TRUE - delayed_objective_text = "Your objective is to destroy an Artificial Intelligence. You will receive further information in a few minutes." + delayed_objective_text = "Your objective is unknown. You will receive further information in a few minutes" /datum/objective/destroy/find_target(list/target_blacklist) var/list/possible_targets = active_ais(1)