should compile just fine now

This commit is contained in:
deathride58
2017-09-04 07:29:51 -04:00
parent 764df7609b
commit 26a63c2f76
+5 -5
View File
@@ -601,18 +601,18 @@ SUBSYSTEM_DEF(ticker)
CHECK_TICK
if (successfulCrew.len)
tochat(world, "<B>The following crew members completed their Crew Objectives:</B>")
to_chat(world, "<B>The following crew members completed their Crew Objectives:</B>")
for(var/i in successfulCrew)
tochat(world, "[i]")
to_chat(world, "[i]")
else
tochat(world, "<B>Nobody completed their Crew Objectives!</B>")
to_chat(world, "<B>Nobody completed their Crew Objectives!</B>")
CHECK_TICK
if (miscreants.len)
tochat(world, "<B> The following crew members were miscreants:</B>")
to_chat(world, "<B> The following crew members were miscreants:</B>")
for(var/i in miscreants)
tochat(world, "[i]")
to_chat(world, "[i]")
CHECK_TICK