From f574bea5d19bb7e77641b20506588c2516237bb3 Mon Sep 17 00:00:00 2001 From: Leo Date: Mon, 5 Feb 2018 18:37:20 -0200 Subject: [PATCH 1/2] Merge pull request #35316 from AnturK/commfix Fixes comm message list for non-unique messages. --- code/game/machinery/computer/communications.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index 9a1210a74e..0a9693733c 100755 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -745,9 +745,9 @@ /datum/comm_message/New(new_title,new_content,new_possible_answers) ..() - if(title) + if(new_title) title = new_title - if(content) + if(new_content) content = new_content if(new_possible_answers) possible_answers = new_possible_answers