From 6c94c63e77b9a9e04dd86420ed3bc785187f83d4 Mon Sep 17 00:00:00 2001 From: Lzimann Date: Fri, 9 Jun 2017 12:44:16 -0300 Subject: [PATCH] Adds a length check to medal commendations --- code/controllers/subsystem/ticker.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index 011b188dd6b..1653ed5dc70 100755 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -579,7 +579,7 @@ SUBSYSTEM_DEF(ticker) CHECK_TICK //medals, placed far down so that people can actually see the commendations. - if(GLOB.commendations) + if(GLOB.commendations.len) to_chat(world, "Medal Commendations:") for (var/com in GLOB.commendations) to_chat(world, com)