From de3980a65c656d044056d5c77e67b239e5c3155b Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Mon, 1 Feb 2021 14:24:45 +0100 Subject: [PATCH] [MIRROR] when you choose a sacrifice as heretic it lists the job other than the name tweak (#3001) * ssdads (#56441) qol as you are gonna check the name of the dude anyway with pda while the input window is open and then missclick into the captain, with this you dont have to * when you choose a sacrifice as heretic it lists the job other than the name tweak Co-authored-by: Tlaltecuhtli <33834933+Tlaltecuhtli@users.noreply.github.com> --- code/modules/antagonists/eldritch_cult/eldritch_knowledge.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/eldritch_cult/eldritch_knowledge.dm b/code/modules/antagonists/eldritch_cult/eldritch_knowledge.dm index ebeab577bfa..240467ae3bb 100644 --- a/code/modules/antagonists/eldritch_cult/eldritch_knowledge.dm +++ b/code/modules/antagonists/eldritch_cult/eldritch_knowledge.dm @@ -287,7 +287,7 @@ var/datum/mind/targeted = A.find_target()//easy way, i dont feel like copy pasting that entire block of code if(!targeted) break - targets[targeted.current.real_name] = targeted.current + targets["[targeted.current.real_name] the [targeted.assigned_role]"] = targeted.current LH.target = targets[input(user,"Choose your next target","Target") in targets] qdel(A) if(LH.target)