mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-28 22:17:12 +01:00
Fixes 32px Emojis, adds some new ones, and *slightly* updates the config system (#4147)
* Wow I can't do a single thing * wee * TRUE
This commit is contained in:
@@ -69,11 +69,11 @@ GLOBAL_VAR_INIT(total_runtimes_skipped, 0)
|
||||
configured_error_silence_time = CONFIG_GET(number/error_silence_time)
|
||||
else
|
||||
var/datum/config_entry/CE = /datum/config_entry/number/error_cooldown
|
||||
configured_error_cooldown = initial(CE.config_entry_value)
|
||||
configured_error_cooldown = initial(CE.default)
|
||||
CE = /datum/config_entry/number/error_limit
|
||||
configured_error_limit = initial(CE.config_entry_value)
|
||||
configured_error_limit = initial(CE.default)
|
||||
CE = /datum/config_entry/number/error_silence_time
|
||||
configured_error_silence_time = initial(CE.config_entry_value)
|
||||
configured_error_silence_time = initial(CE.default)
|
||||
*/
|
||||
|
||||
//Each occurence of a unique error adds to its cooldown time...
|
||||
|
||||
@@ -119,7 +119,7 @@ GLOBAL_DATUM(error_cache, /datum/error_viewer/error_cache)
|
||||
//log_debug("Runtime in <b>[e.file]</b>, line <b>[e.line]</b>: <b>[html_encode(e.name)]</b> [error_entry.make_link(viewtext)]")
|
||||
/*
|
||||
var/err_msg_delay
|
||||
if(config)
|
||||
if(config?.loaded)
|
||||
err_msg_delay = CONFIG_GET(number/error_msg_delay)
|
||||
else
|
||||
var/datum/config_entry/CE = /datum/config_entry/number/error_msg_delay
|
||||
|
||||
Reference in New Issue
Block a user