From cf0865100fff14de6e1fb99860a4cbe015014d76 Mon Sep 17 00:00:00 2001 From: CapnMachaddish Date: Wed, 2 Dec 2020 17:04:22 -0600 Subject: [PATCH] numbers in names --- code/__HELPERS/text.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__HELPERS/text.dm b/code/__HELPERS/text.dm index e80d754a..cb19779f 100644 --- a/code/__HELPERS/text.dm +++ b/code/__HELPERS/text.dm @@ -103,7 +103,7 @@ //Filters out undesirable characters from names -/proc/reject_bad_name(t_in, allow_numbers=0, max_length=MAX_NAME_LEN) +/proc/reject_bad_name(t_in, allow_numbers=1, max_length=MAX_NAME_LEN) if(!t_in || length(t_in) > max_length) return //Rejects the input if it is null or if it is longer then the max length allowed