From 6fb1ea85e1228cdab1c762025e7b9f979575c1d5 Mon Sep 17 00:00:00 2001 From: PsiOmegaDelta Date: Thu, 4 Jun 2015 15:18:51 +0200 Subject: [PATCH] Adds a notice to StaffWho that adminhelps are also sent to IRC. --- code/game/verbs/who.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/game/verbs/who.dm b/code/game/verbs/who.dm index e96bc3b4da8..d877001fad3 100644 --- a/code/game/verbs/who.dm +++ b/code/game/verbs/who.dm @@ -98,6 +98,8 @@ else if (R_MOD & C.holder.rights || R_MENTOR & C.holder.rights) modmsg += "\t[C] is a [C.holder.rank]\n" num_mods_online++ - + if(config.admin_irc) + src << "Adminhelps are also sent to IRC. If no admins are available in game try anyway and an admin on IRC may see it and respond." msg = "Current Admins ([num_admins_online]):\n" + msg + "\n Current [config.mods_are_mentors ? "Mentors" : "Moderators"]([num_mods_online]):\n" + modmsg + src << msg