Update text.dm (#1853)

This commit is contained in:
Azarak
2020-11-26 23:22:01 +00:00
committed by GitHub
parent 78578ce61f
commit 9a8d3efee2
+2 -1
View File
@@ -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