From 120e339625d7196284e9d307f6b648c9874b1930 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Wed, 20 Sep 2017 15:50:00 -0400 Subject: [PATCH] Fixes IRC ahelp answer notifications --- code/modules/admin/verbs/adminhelp.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm index 4349bb307aa..16f654bb800 100644 --- a/code/modules/admin/verbs/adminhelp.dm +++ b/code/modules/admin/verbs/adminhelp.dm @@ -211,7 +211,7 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) return ..() /datum/admin_help/proc/AddInteraction(formatted_message) - if(heard_by_no_admins && usr && usr.client != initiator) + if(heard_by_no_admins && usr && usr.ckey != initiator_ckey) heard_by_no_admins = FALSE send2irc(initiator_ckey, "Ticket #[id]: Answered by [key_name(usr)]") _interactions += "[gameTimestamp()]: [formatted_message]"