stop the pills (#18703)

* RedPills Processing

Now you have to use START_PROCESSING(SSname, thing) (and STOP_PROCESSING)

* Fixes a minor bug.
This commit is contained in:
Kyle Spier-Swenson
2016-06-20 03:07:44 -07:00
committed by AnturK
parent c480ad71ee
commit 0d6bbbb412
90 changed files with 424 additions and 416 deletions
@@ -46,7 +46,7 @@
qdel(src)
return
SSobj.processing |= src
START_PROCESSING(SSobj, src)
..()
icon = L.icon
icon_state = L.icon_state
@@ -63,7 +63,7 @@
M.Stun(1) //So they can't do anything while petrified
if(timer <= 0)
dump_contents()
SSobj.processing -= src
STOP_PROCESSING(SSobj, src)
qdel(src)
/obj/structure/closet/statue/dump_contents()
@@ -19,10 +19,10 @@
/obj/structure/transit_tube/station/New()
..()
SSobj.processing += src
START_PROCESSING(SSobj, src)
/obj/structure/transit_tube/station/Destroy()
SSobj.processing -= src
STOP_PROCESSING(SSobj, src)
return ..()
// Stations which will send the tube in the opposite direction after their stop.