This commit is contained in:
kevinz000
2018-12-10 04:18:48 -08:00
parent ab3f30b28f
commit 8ee0adff8f
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -263,11 +263,11 @@ steam.start() -- spawns the effect
var/strength = 5 // How much damage to do inside each affect()
/obj/effect/effect/smoke/elemental/Initialize()
processing_objects += src
START_PROCESSING(SSobj, src)
return ..()
/obj/effect/effect/smoke/elemental/Destroy()
processing_objects -= src
STOP_PROCESSING(SSobj, src)
return ..()
/obj/effect/effect/smoke/elemental/Move()
@@ -5,11 +5,11 @@
var/radiation_power = 30 // Bigger numbers means more radiation.
/obj/effect/map_effect/radiation_emitter/Initialize()
processing_objects += src
START_PROCESSING(SSobj, src)
return ..()
/obj/effect/map_effect/radiation_emitter/Destroy()
processing_objects -= src
STOP_PROCESSING(SSobj, src)
return ..()
/obj/effect/map_effect/radiation_emitter/process()