diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm
index b386f3943d..0c59407ca8 100755
--- a/code/controllers/subsystem/ticker.dm
+++ b/code/controllers/subsystem/ticker.dm
@@ -601,18 +601,18 @@ SUBSYSTEM_DEF(ticker)
CHECK_TICK
if (successfulCrew.len)
- tochat(world, "The following crew members completed their Crew Objectives:")
+ to_chat(world, "The following crew members completed their Crew Objectives:")
for(var/i in successfulCrew)
- tochat(world, "[i]")
+ to_chat(world, "[i]")
else
- tochat(world, "Nobody completed their Crew Objectives!")
+ to_chat(world, "Nobody completed their Crew Objectives!")
CHECK_TICK
if (miscreants.len)
- tochat(world, " The following crew members were miscreants:")
+ to_chat(world, " The following crew members were miscreants:")
for(var/i in miscreants)
- tochat(world, "[i]")
+ to_chat(world, "[i]")
CHECK_TICK