From 436056cace27ba04d3fc0935972ae65731f4799d Mon Sep 17 00:00:00 2001 From: bawhoppen Date: Thu, 24 Mar 2016 12:41:00 -0500 Subject: [PATCH] makes it actually work --- code/modules/admin/verbs/adminhelp.dm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm index bf3da5e19fd..7526207b3ad 100644 --- a/code/modules/admin/verbs/adminhelp.dm +++ b/code/modules/admin/verbs/adminhelp.dm @@ -72,13 +72,17 @@ /client/verb/mentorhelp(msg as text) set category = "Admin" set name = "Mentorhelp" - ahelp(msg, 'sound/machines/twobeep.ogg', "Mentor", ircalert=FALSE, "MH", 0) + ahelp(msg, 'sound/machines/twobeep.ogg', "Mentor", FALSE, "MH", 0) /client/verb/adminhelp(msg as text) set category = "Admin" set name = "Adminhelp" + ahelp(msg, 'sound/effects/adminhelp.ogg', "Admin", TRUE, "AH", 1200) - ahelp(msg, 'sound/effects/adminhelp.ogg', "Admin", ircalert=TRUE, "AH", 1200) +/client/proc/ahelp(msg, sound, title, ircalert, unique_id, delay) + if(say_disabled) //This is here to try to identify lag problems + usr << "Speech is currently admin-disabled." + return /client/proc/ahelp(msg, sound, title, ircalert, unique_id, delay) if(say_disabled) //This is here to try to identify lag problems