mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-21 15:42:35 +00:00
Reduce SSgarbage's tickrate (#3376)
Reduces the garbage collector's tick rate to 2 seconds vs. 0.5 seconds - it doesn't need to tick this fast and this should in theory reduce GC lag.
This commit is contained in:
@@ -3,7 +3,7 @@ var/datum/controller/subsystem/garbage_collector/SSgarbage
|
||||
/datum/controller/subsystem/garbage_collector
|
||||
name = "Garbage"
|
||||
priority = SS_PRIORITY_GARBAGE
|
||||
wait = 5
|
||||
wait = 2 SECONDS
|
||||
flags = SS_FIRE_IN_LOBBY|SS_POST_FIRE_TIMING|SS_BACKGROUND|SS_NO_INIT
|
||||
|
||||
var/collection_timeout = 3000// deciseconds to wait to let running procs finish before we just say fuck it and force del() the object
|
||||
|
||||
Reference in New Issue
Block a user