Adds Medal Commendations!

This commit is contained in:
CitadelStationBot
2017-06-08 20:39:15 -05:00
parent 00790c0fdd
commit 1bdda132e7
6 changed files with 27 additions and 2 deletions
View File
+15
View File
@@ -0,0 +1,15 @@
diff a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm (rejected hunks)
@@ -613,6 +615,13 @@ SUBSYSTEM_DEF(ticker)
mode.declare_station_goal_completion()
CHECK_TICK
+ //medals, placed far down so that people can actually see the commendations.
+ if(GLOB.commendations)
+ to_chat(world, "<b><font size=3>Medal Commendations:</font></b>")
+ for (var/com in GLOB.commendations)
+ to_chat(world, com)
+
+ CHECK_TICK
//Collects persistence features
SSpersistence.CollectData()