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
+2 -2
View File
@@ -27,10 +27,10 @@
/obj/effect/forcefield/mime/New()
..()
last_process = world.time
SSobj.processing |= src
START_PROCESSING(SSobj, src)
/obj/effect/forcefield/mime/process()
timeleft -= (world.time - last_process)
if(timeleft <= 0)
SSobj.processing.Remove(src)
STOP_PROCESSING(SSobj, src)
qdel(src)