Update client_procs.dm

This commit is contained in:
silicons
2022-06-11 01:11:17 -07:00
committed by GitHub
parent 3ec6a024c7
commit 763c5ff195
+7 -3
View File
@@ -422,10 +422,12 @@ GLOBAL_LIST_INIT(blacklisted_builds, list(
if( (world.address == address || !address) && !GLOB.host )
GLOB.host = key
world.update_status()
if(holder)
add_admin_verbs()
to_chat(src, get_message_output("memo"))
var/admin_memo_note = get_message_output("memo")
if(admin_memo_note)
to_chat(src, get_message_output("memo"))
adminGreet()
add_verbs_from_config()
@@ -468,7 +470,9 @@ GLOBAL_LIST_INIT(blacklisted_builds, list(
if(CONFIG_GET(flag/autoconvert_notes))
convert_notes_sql(ckey)
to_chat(src, get_message_output("message", ckey))
var/admin_message_note = get_message_output("message", ckey)
if(admin_message_note)
to_chat(src, admin_message_note)
if(!winexists(src, "asset_cache_browser")) // The client is using a custom skin, tell them.
to_chat(src, "<span class='warning'>Unable to access asset cache browser, if you are using a custom skin file, please allow DS to download the updated version, if you are not, then make a bug report. This is not a critical issue but can cause issues with resource downloading, as it is impossible to know when extra resources arrived to you.</span>")