diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm index 634d6d4a64..6b3e6699b4 100644 --- a/code/modules/admin/verbs/adminhelp.dm +++ b/code/modules/admin/verbs/adminhelp.dm @@ -463,13 +463,14 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) message_admins(msg) log_admin(msg) AddInteraction("[key_name_admin(usr)] is now handling this ticket.") - SSwebhooks.send( - WEBHOOK_AHELP_SENT, - list( - "name" = "Ticket ([id]) (Game ID: [game_id]) being handled.", - "body" = "[key_name(usr)] is now handling the ticket." - ) - ) + var/query_string = "type=admintake" + query_string += "&key=[url_encode(config.chat_webhook_key)]" + query_string += "&admin=[url_encode(key_name_admin(usr))]" + query_string += "&user=[url_encode(key_name(initiator))]" + world.Export("[config.chat_webhook_url]?[query_string]") + + + //Show the ticket panel /datum/admin_help/proc/TicketPanel()