From 5f4e1ed721c3f0a1eb7d1838548393004d1f2634 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 26 Jun 2017 06:01:38 -0500 Subject: [PATCH] Improves Ahelp feedback --- code/modules/admin/verbs/adminhelp.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm index 632890e654..ce9f5a62f4 100644 --- a/code/modules/admin/verbs/adminhelp.dm +++ b/code/modules/admin/verbs/adminhelp.dm @@ -196,9 +196,6 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) else MessageNoRecipient(parsed_message) - //show it to the person adminhelping too - to_chat(C, "PM to-Admins: [name]") - //send it to irc if nobody is on and tell us how many were on var/admin_number_present = send2irc_adminless_only(initiator_ckey, "Ticket #[id]: [name]") log_admin_private("Ticket #[id]: [key_name(initiator)]: [name] - heard by [admin_number_present] non-AFK admins who have +BAN.") @@ -265,6 +262,9 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) window_flash(X, ignorepref = TRUE) to_chat(X, chat_msg) + //show it to the person adminhelping too + to_chat(initiator, "PM to-Admins: [name]") + //Reopen a closed ticket /datum/admin_help/proc/Reopen() if(state == AHELP_ACTIVE)