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:
kane-f
2022-04-30 23:44:10 +01:00
committed by GitHub
parent 095151246b
commit 0ca20cdab8
6 changed files with 73 additions and 105 deletions

View File

@@ -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")