From 26a63c2f76f139a7e65675487a04e7e45bb451ee Mon Sep 17 00:00:00 2001 From: deathride58 Date: Mon, 4 Sep 2017 07:29:51 -0400 Subject: [PATCH] should compile just fine now --- code/controllers/subsystem/ticker.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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