diff --git a/code/modules/antagonists/traitor/datum_traitor.dm b/code/modules/antagonists/traitor/datum_traitor.dm
index 830555e9a2..3180c1b305 100644
--- a/code/modules/antagonists/traitor/datum_traitor.dm
+++ b/code/modules/antagonists/traitor/datum_traitor.dm
@@ -391,14 +391,14 @@
if(objective.completable)
var/completion = objective.check_completion()
if(completion >= 1)
- objectives_text += "Objective #[count]: [objective.explanation_text] Success!"
+ objectives_text += "
Objective #[count]: [objective.explanation_text] Success!"
else if(completion <= 0)
- objectives_text += "Objective #[count]: [objective.explanation_text] Fail."
+ objectives_text += "
Objective #[count]: [objective.explanation_text] Fail."
traitorwin = FALSE
else
- objectives_text += "Objective #[count]: [objective.explanation_text] [completion*100]%"
+ objectives_text += "
Objective #[count]: [objective.explanation_text] [completion*100]%"
else
- objectives_text += "Objective #[count]: [objective.explanation_text]"
+ objectives_text += "
Objective #[count]: [objective.explanation_text]"
count++
if(uplink_true)