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("
") + "
")
////////////////