diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm
index 502c24492f..b386f3943d 100755
--- a/code/controllers/subsystem/ticker.dm
+++ b/code/controllers/subsystem/ticker.dm
@@ -474,9 +474,9 @@ SUBSYSTEM_DEF(ticker)
for(var/datum/mind/crewMind in minds)
if(!crewMind.current || !crewMind.objectives.len)
continue
- if(var/datum/objective/miscreant/MO in crewMind.objectives)
+ for(var/datum/objective/miscreant/MO in crewMind.objectives)
miscreants += "[crewMind.current.real_name] (Played by: [crewMind.key]). Objective: [MO.explanation_text]"
- if(var/datum/objective/crew/CO in crewMind.objectives)
+ for(var/datum/objective/crew/CO in crewMind.objectives)
if(CO.check_completion())
to_chat(crewMind.current, "
Objective: [CO.explanation_text] Success!")
successfulCrew += "[crewMind.current.real_name] (Played by: [crewMind.key]). Objective: [CO.explanation_text]"