From aab487ba29268363f694c426b36c08a1437cc23d Mon Sep 17 00:00:00 2001 From: TDSSS <32099540+TDSSS@users.noreply.github.com> Date: Thu, 11 Oct 2018 12:18:26 +0200 Subject: [PATCH] fixed --- code/__HELPERS/text.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/__HELPERS/text.dm b/code/__HELPERS/text.dm index 8e9b5f93691..dbbc965411a 100644 --- a/code/__HELPERS/text.dm +++ b/code/__HELPERS/text.dm @@ -142,8 +142,8 @@ t_out += ascii2text(ascii_char) last_char_group = 2 - // ~ | @ : # $ % & * + - if(126,124,64,58,35,36,37,38,42,43) //Other symbols that we'll allow (mainly for AI) + // ~ | @ : # $ % & * + ! + if(126,124,64,58,35,36,37,38,42,43,33) //Other symbols that we'll allow (mainly for AI) if(!last_char_group) continue //suppress at start of string if(!allow_numbers) continue t_out += ascii2text(ascii_char)