From c9cc5920c8e720c51344d20d580fcb810570c308 Mon Sep 17 00:00:00 2001 From: Spookerton Date: Sat, 9 Apr 2022 10:50:46 +0100 Subject: [PATCH 1/2] Merge pull request #8516 from Sypsoti/mmc-fix Station's Message Monitor Functions Again --- code/game/machinery/computer/message.dm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/computer/message.dm b/code/game/machinery/computer/message.dm index b39e8513bf..5962f9aa8f 100644 --- a/code/game/machinery/computer/message.dm +++ b/code/game/machinery/computer/message.dm @@ -69,11 +69,15 @@ ..() /obj/machinery/computer/message_monitor/Initialize() + ..() + return INITIALIZE_HINT_LATELOAD + +/obj/machinery/computer/message_monitor/LateInitialize() + . = ..() //Is the server isn't linked to a server, and there's a server available, default it to the first one in the list. if(!linkedServer) if(message_servers && message_servers.len > 0) linkedServer = message_servers[1] - return ..() /obj/machinery/computer/message_monitor/tgui_interact(mob/user, datum/tgui/ui) ui = SStgui.try_update_ui(user, src, ui)