From 9cb973e06d78fd24eea351aa800bc292fc2a46e5 Mon Sep 17 00:00:00 2001 From: FreeStylaLT Date: Thu, 26 Jul 2018 01:52:22 +0300 Subject: [PATCH] adds a hint for which jobs might have the object --- code/game/gamemodes/objective.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm index f9e18019b25..8b731c587af 100644 --- a/code/game/gamemodes/objective.dm +++ b/code/game/gamemodes/objective.dm @@ -352,7 +352,9 @@ var/list/potential_theft_objectives = subtypesof(/datum/theft_objective) - /datu if(O.flags & 2) continue steal_target=O - explanation_text = "Steal [steal_target]. One can be found in [get_location()]." + explanation_text = "Steal [steal_target]. One was last seen in [get_location()]. " + if(islist(O.protected_jobs) && O.protected_jobs.len) + explanation_text += "It may also be in the possession of the [jointext(O.protected_jobs, ", ")]." return explanation_text = "Free Objective."