mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-13 09:05:11 +01:00
Revert "Atoms can now be stationloving" (#24903)
* Revert "Bulletproof(Tactical) Armour + Vest Defence Tweak (#24816)" This reverts commit6ab7ba871f. * Revert "Automatic changelog generation for PR #24810 [ci skip]" This reverts commit1cd117afd6. * Revert "Stacks automatically merge on Initialize (#24810)" This reverts commit6e39f5cf00. * Revert "Automatic changelog generation for PR #24794 [ci skip]" This reverts commit62a2ef30dd. * Revert "Wizards can now Summon Ghosts (#24794)" This reverts commit473561c0be. * Revert "Automatic changelog generation for PR #24791 [ci skip]" This reverts commitb2aeef06d0. * Revert "Compiles in Lavaland (#24791)" This reverts commit272cc34008. * Revert "Forcefield Projector (#24790)" This reverts commit4b2ffcffe8. * Revert "Atoms can now be stationloving (#24748)" This reverts commit60f7c1df3f.
This commit is contained in:
committed by
oranges
parent
6ab7ba871f
commit
d3b5f0e97c
@@ -1,32 +0,0 @@
|
||||
var/datum/controller/subsystem/objects/SSinbounds
|
||||
/datum/controller/subsystem/inbounds
|
||||
name = "Inbounds"
|
||||
priority = 40
|
||||
flags = SS_NO_INIT
|
||||
|
||||
var/list/processing = list()
|
||||
var/list/currentrun = list()
|
||||
|
||||
/datum/controller/subsystem/inbounds/New()
|
||||
NEW_SS_GLOBAL(SSinbounds)
|
||||
/datum/controller/subsystem/inbounds/stat_entry()
|
||||
..("P:[processing.len]")
|
||||
|
||||
/datum/controller/subsystem/inbounds/fire(resumed = 0)
|
||||
if (!resumed)
|
||||
src.currentrun = processing.Copy()
|
||||
//cache for sanic speed (lists are references anyways)
|
||||
var/list/currentrun = src.currentrun
|
||||
|
||||
while(currentrun.len)
|
||||
var/atom/movable/thing = currentrun[currentrun.len]
|
||||
currentrun.len--
|
||||
if(thing)
|
||||
thing.check_in_bounds(wait)
|
||||
else
|
||||
SSinbounds.processing -= thing
|
||||
if(MC_TICK_CHECK)
|
||||
return
|
||||
|
||||
/datum/controller/subsystem/inbounds/Recover()
|
||||
processing = SSinbounds.processing
|
||||
Reference in New Issue
Block a user