From ee541f35dfc5bac2b146d196c7a7edafc3f3f9cb Mon Sep 17 00:00:00 2001 From: Ryll Ryll <3589655+Ryll-Ryll@users.noreply.github.com> Date: Wed, 6 Oct 2021 01:39:08 -0400 Subject: [PATCH] fixes multiple spaces breaking asay (#61939) --- code/modules/admin/verbs/adminhelp.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm index cd5b3b10d0a..e8903729acc 100644 --- a/code/modules/admin/verbs/adminhelp.dm +++ b/code/modules/admin/verbs/adminhelp.dm @@ -800,6 +800,8 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) var/i = 0 for(var/word in msglist) i++ + if(!length(word)) + continue if(word[1] != "@") continue var/ckey_check = lowertext(copytext(word, 2))