From fb27bd83e255e08a279e58bfc6946b54700726ef Mon Sep 17 00:00:00 2001 From: ItsSelis Date: Mon, 3 Oct 2022 23:10:36 +0200 Subject: [PATCH] fallback proc now calls parent --- code/modules/admin/verbs/adminhelp.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm index 771ef7be9da..c069d7379dd 100644 --- a/code/modules/admin/verbs/adminhelp.dm +++ b/code/modules/admin/verbs/adminhelp.dm @@ -471,7 +471,10 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) log_admin(msg) TicketPanel() //we have to be here to do this -/datum/admin_help/tgui_fallback() +/datum/admin_help/tgui_fallback(payload) + if(..()) + return + TicketPanelLegacy() /datum/admin_help/tgui_interact(mob/user, datum/tgui/ui)