fishing port from tgstation (#5360)

Co-authored-by: silicons <no@you.cat>
This commit is contained in:
silicons
2023-04-16 16:16:51 +02:00
committed by GitHub
co-authored by silicons
parent 26606cccdd
commit 4f76022369
117 changed files with 5153 additions and 1242 deletions
@@ -18,7 +18,7 @@ SUBSYSTEM_DEF(processing)
currentrun = processing.Copy()
//cache for sanic speed (lists are references anyways)
var/list/current_run = currentrun
var/dt = (subsystem_flags & SS_TICKER)? (wait * world.tick_lag * 0.1) : (wait * 0.1)
var/dt = (subsystem_flags & SS_TICKER)? (wait * world.tick_lag) : max(world.tick_lag, wait * 0.1)
while(current_run.len)
var/datum/thing = current_run[current_run.len]