From 7136f5cffb170f2ac621a14320d98f6a9005c740 Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Wed, 20 Jan 2021 06:09:20 +0100 Subject: [PATCH] boop --- code/modules/antagonists/eldritch_cult/eldritch_antag.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/antagonists/eldritch_cult/eldritch_antag.dm b/code/modules/antagonists/eldritch_cult/eldritch_antag.dm index b59d6af61b..1e43754477 100644 --- a/code/modules/antagonists/eldritch_cult/eldritch_antag.dm +++ b/code/modules/antagonists/eldritch_cult/eldritch_antag.dm @@ -229,7 +229,7 @@ /datum/antagonist/heretic/antag_panel() var/list/parts = list() parts += ..() - parts += "Targets currently assigned by living hearts (Can give a false negative if they stole someone elses living heart, check the other heretics if this is suspected to be the case):" + parts += "Targets currently assigned by living hearts (Can give a false negative if they stole someone elses living heart):" if(!sac_targetted.len) parts += "None." else @@ -239,7 +239,8 @@ parts += "None." else parts += actually_sacced.Join(",") - return parts.Join("
") + + return (parts.Join("
") + "
") ////////////////