Merge pull request #13136 from Citadel-Station-13/silicons-patch-8

the station charter rename now disallows any name with characters above a single byte in length unless an admin edits it to allow unicode
This commit is contained in:
BlackMajor
2020-09-06 17:50:32 +12:00
committed by GitHub

View File

@@ -13,6 +13,7 @@
var/ignores_timeout = FALSE
var/response_timer_id = null
var/approval_time = 600
var/allow_unicode = FALSE
var/static/regex/standard_station_regex
@@ -48,6 +49,9 @@
if(!new_name)
return
if(!allow_unicode && (length(new_name) != length_char(new_name)))
to_chat(user, "Unicode is not allowed. Adminhelp if you want to use it so badly.")
return
log_game("[key_name(user)] has proposed to name the station as \
[new_name]")