From 9a8d3efee2a267166954a94f2acbdf733b915dbb Mon Sep 17 00:00:00 2001 From: Azarak Date: Fri, 27 Nov 2020 00:22:01 +0100 Subject: [PATCH] Update text.dm (#1853) --- code/__HELPERS/text.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/__HELPERS/text.dm b/code/__HELPERS/text.dm index a32b8326298..d285a870501 100644 --- a/code/__HELPERS/text.dm +++ b/code/__HELPERS/text.dm @@ -147,7 +147,8 @@ * * strict - return null immidiately instead of filtering out * * allow_numbers - allows numbers and common special characters - used for silicon/other weird things names */ -/proc/reject_bad_name(t_in, allow_numbers = FALSE, max_length = MAX_NAME_LEN, ascii_only = TRUE, strict = FALSE) +///proc/reject_bad_name(t_in, allow_numbers = FALSE, max_length = MAX_NAME_LEN, ascii_only = TRUE, strict = FALSE) //ORIGINAL +/proc/reject_bad_name(t_in, allow_numbers = TRUE, max_length = MAX_NAME_LEN, ascii_only = TRUE, strict = FALSE) //SKYRAT EDIT CHANGE if(!t_in) return //Rejects the input if it is null