diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm index 13607dcb76..40bd0b8799 100644 --- a/code/modules/admin/verbs/adminhelp.dm +++ b/code/modules/admin/verbs/adminhelp.dm @@ -185,6 +185,12 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) if(admin_number_present <= 0) to_chat(C, "No active admins are online, your adminhelp was sent to the admin irc.") send2adminchat() //VOREStation Add + //YW EDIT START + var/list/adm = get_admin_counts() + var/list/activemins = adm["present"] + var activeMins = activemins.len + SERVER_TOOLS_RELAY_BROADCAST("ADMINHELP: FROM: [initiator_ckey]/[initiator_key_name] - MSG: **[msg]** - Heard by [activeMins] NON-AFK staff members.") + //YW EDIT END GLOB.ahelp_tickets.active_tickets += src /datum/admin_help/Destroy()