mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
Actually fixes multi-z infinite loops (#32470)
* Testing removal of multi-z cap variables in lieue of other system * Line not needed * Neither is this * More cleanup * Fixed cause of not being able to initialise server with infinite loops of multi-z * Linter hates these, plus unnecessary anyways * Cutting down icon update code, still works Co-authored-by: kanef <kanef9x@protonmail.com>
This commit is contained in:
@@ -77,10 +77,6 @@
|
||||
var/cargo_forwarding_on_roundstart = 0
|
||||
var/cargo_forwarding_amount_override = 0
|
||||
|
||||
|
||||
var/multiz_render_cap = 8 //how far down open spaces will render
|
||||
var/multiz_bottom_cap = 16 //how far down open spaces will detect for a bottom
|
||||
|
||||
// BSQL things
|
||||
var/bsql_debug = 0
|
||||
var/async_query_timeout = 10
|
||||
@@ -584,11 +580,6 @@
|
||||
bsql_thread_limit = text2num(value)
|
||||
|
||||
|
||||
if("multiz_render_cap")
|
||||
multiz_render_cap = text2num(value)
|
||||
if("multiz_bottom_cap")
|
||||
multiz_bottom_cap = text2num(value)
|
||||
|
||||
if("media_base_url")
|
||||
media_base_url = value
|
||||
if("media_secret_key")
|
||||
|
||||
Reference in New Issue
Block a user