From d4a6a4bcc8afd93d2db5be7295f24c5074052faf Mon Sep 17 00:00:00 2001 From: Ryal Date: Tue, 4 May 2021 23:19:00 -0700 Subject: [PATCH] Fixes line breaks on non admin accounts for admin who (#15989) --- code/game/verbs/who.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/verbs/who.dm b/code/game/verbs/who.dm index 449ff234157..4c21afebdd2 100644 --- a/code/game/verbs/who.dm +++ b/code/game/verbs/who.dm @@ -170,6 +170,7 @@ msg += "[C] is a [C.holder.rank]" else msg += "[C] is a [C.holder.rank]" + msg += "\n" num_admins_online++ else if(check_rights(R_MOD|R_MENTOR, 0, C.mob) && !check_rights(R_ADMIN, 0, C.mob)) var/rank_colour = client2rankcolour(C) @@ -177,6 +178,7 @@ modmsg += "[C] is a [C.holder.rank]" else modmsg += "[C] is a [C.holder.rank]" + modmsg += "\n" num_mods_online++ var/noadmins_info = "\nIf no admins or mentors are online, make a ticket anyways. Adminhelps and mentorhelps will be relayed to discord, and staff will still be informed."