From 2fb886065b49d852e8be77475a16795f81fe4375 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sun, 20 May 2018 20:37:23 -0400 Subject: [PATCH] Merge pull request #37928 from nichlas0010/fixescommsconsoleupdates Comms consoles don't update while viewing messages --- code/game/machinery/computer/communications.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index 9f50afdfee..14d02e9752 100755 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -45,7 +45,7 @@ /obj/machinery/computer/communications/process() if(..()) - if(state != STATE_STATUSDISPLAY && state != STATE_CALLSHUTTLE && state != STATE_PURCHASE) + if(state != STATE_STATUSDISPLAY && state != STATE_CALLSHUTTLE && state != STATE_PURCHASE && state != STATE_VIEWMESSAGE) updateDialog() /obj/machinery/computer/communications/Topic(href, href_list)