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 12:07:44 +02:00
committed by AnturK
parent c480ad71ee
commit 0d6bbbb412
90 changed files with 424 additions and 416 deletions
+3 -3
View File
@@ -24,13 +24,13 @@
/obj/effect/countdown/proc/start()
if(!started)
SSfastprocess.processing |= src
START_PROCESSING(SSfastprocess, src)
started = TRUE
/obj/effect/countdown/proc/stop()
if(started)
overlays.Cut()
SSfastprocess.processing -= src
STOP_PROCESSING(SSfastprocess, src)
started = FALSE
/obj/effect/countdown/proc/get_value()
@@ -59,7 +59,7 @@
/obj/effect/countdown/Destroy()
attached_to = null
SSfastprocess.processing -= src
STOP_PROCESSING(SSfastprocess, src)
. = ..()
/obj/effect/countdown/syndicatebomb