diff --git a/code/__HELPERS/roundend.dm b/code/__HELPERS/roundend.dm
index 7cbfbd040a..aa388d7413 100644
--- a/code/__HELPERS/roundend.dm
+++ b/code/__HELPERS/roundend.dm
@@ -563,7 +563,7 @@
if(objective.completable)
var/completion = objective.check_completion()
if(completion >= 1)
- objective_parts += "Objective #[count]: [objective.explanation_text] Success!"
+ objective_parts += "Objective #[count]: [objective.explanation_text] Success!"
else if(completion <= 0)
objective_parts += "Objective #[count]: [objective.explanation_text] Fail."
else
diff --git a/code/modules/antagonists/_common/antag_team.dm b/code/modules/antagonists/_common/antag_team.dm
index 653853cfb5..9d138ed0b9 100644
--- a/code/modules/antagonists/_common/antag_team.dm
+++ b/code/modules/antagonists/_common/antag_team.dm
@@ -42,7 +42,7 @@
if(objective.completable)
var/completion = objective.check_completion()
if(completion >= 1)
- report += "Objective #[objective_count]: [objective.explanation_text] Success!"
+ report += "Objective #[objective_count]: [objective.explanation_text] Success!"
else if(completion <= 0)
report += "Objective #[objective_count]: [objective.explanation_text] Fail."
win = FALSE
diff --git a/code/modules/antagonists/brother/brother.dm b/code/modules/antagonists/brother/brother.dm
index a48e080a89..0a2e079921 100644
--- a/code/modules/antagonists/brother/brother.dm
+++ b/code/modules/antagonists/brother/brother.dm
@@ -111,7 +111,7 @@
if(objective.completable)
var/completion = objective.check_completion()
if(completion >= 1)
- parts += "Objective #[objective_count]: [objective.explanation_text] Success!"
+ parts += "Objective #[objective_count]: [objective.explanation_text] Success!"
else if(completion <= 0)
parts += "Objective #[objective_count]: [objective.explanation_text] Fail."
win = FALSE
diff --git a/code/modules/antagonists/changeling/changeling.dm b/code/modules/antagonists/changeling/changeling.dm
index 336d21c974..9dbcaf7ec2 100644
--- a/code/modules/antagonists/changeling/changeling.dm
+++ b/code/modules/antagonists/changeling/changeling.dm
@@ -563,7 +563,7 @@
if(objective.completable)
var/completion = objective.check_completion()
if(completion >= 1)
- parts += "Objective #[count]: [objective.explanation_text] Success!"
+ parts += "Objective #[count]: [objective.explanation_text] Success!"
else if(completion <= 0)
parts += "Objective #[count]: [objective.explanation_text] Fail."
changelingwin = FALSE
diff --git a/code/modules/antagonists/cult/cult.dm b/code/modules/antagonists/cult/cult.dm
index 023794182a..ae61b2c814 100644
--- a/code/modules/antagonists/cult/cult.dm
+++ b/code/modules/antagonists/cult/cult.dm
@@ -441,7 +441,7 @@
if(objective.completable)
var/completion = objective.check_completion()
if(completion >= 1)
- parts += "Objective #[count]: [objective.explanation_text] Success!"
+ parts += "Objective #[count]: [objective.explanation_text] Success!"
else if(completion <= 0)
parts += "Objective #[count]: [objective.explanation_text] Fail."
else
diff --git a/code/modules/antagonists/disease/disease_datum.dm b/code/modules/antagonists/disease/disease_datum.dm
index c827179006..7de0330ad6 100644
--- a/code/modules/antagonists/disease/disease_datum.dm
+++ b/code/modules/antagonists/disease/disease_datum.dm
@@ -55,7 +55,7 @@
if(objective.completable)
var/completion = objective.check_completion()
if(completion >= 1)
- result += "Objective #[count]: [objective.explanation_text] Success!"
+ result += "Objective #[count]: [objective.explanation_text] Success!"
else if(completion <= 0)
result += "Objective #[count]: [objective.explanation_text] Fail."
win = FALSE
diff --git a/code/modules/antagonists/traitor/datum_traitor.dm b/code/modules/antagonists/traitor/datum_traitor.dm
index df5e6004ba..1d30cdbf77 100644
--- a/code/modules/antagonists/traitor/datum_traitor.dm
+++ b/code/modules/antagonists/traitor/datum_traitor.dm
@@ -239,7 +239,7 @@
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."
traitorwin = FALSE
diff --git a/code/modules/antagonists/wizard/wizard.dm b/code/modules/antagonists/wizard/wizard.dm
index 2d32f8f00a..70adafd3fb 100644
--- a/code/modules/antagonists/wizard/wizard.dm
+++ b/code/modules/antagonists/wizard/wizard.dm
@@ -269,7 +269,7 @@
if(objective.completable)
var/completion = objective.check_completion()
if(completion >= 1)
- parts += "Objective #[count]: [objective.explanation_text] Success!"
+ parts += "Objective #[count]: [objective.explanation_text] Success!"
else if(completion <= 0)
parts += "Objective #[count]: [objective.explanation_text] Fail."
wizardwin = FALSE