[MIRROR] [READY] Fixes de-initialization of cleanables-ash (#5295)

* [READY] Fixes de-initialization of cleanables-ash

* Update morgue.dm

* Update morgue.dm
This commit is contained in:
CitadelStationBot
2018-02-05 03:20:09 -06:00
committed by Poojawa
parent 9b453dfd35
commit d4c270fe4a
3 changed files with 8 additions and 7 deletions
+2 -1
View File
@@ -2,10 +2,11 @@
name = "decal"
anchored = TRUE
resistance_flags = FIRE_PROOF | UNACIDABLE | ACID_PROOF
var/turf_loc_check = TRUE
/obj/effect/decal/Initialize()
. = ..()
if(!isturf(loc) || NeverShouldHaveComeHere(loc))
if(turf_loc_check && (!isturf(loc) || NeverShouldHaveComeHere(loc)))
return INITIALIZE_HINT_QDEL
/obj/effect/decal/blob_act(obj/structure/blob/B)