Merge pull request #8852 from Verkister/patch-100

Cleanable robo remains
This commit is contained in:
Spookerton
2022-12-03 11:49:24 +00:00
committed by VirgoBot
parent ac352316ca
commit 5e1bf8435f
+6 -2
View File
@@ -58,9 +58,13 @@
/obj/effect/decal/remains/attack_hand(mob/user as mob)
to_chat(user, "<span class='notice'>[src] sinks together into a pile of ash.</span>")
var/turf/simulated/floor/F = get_turf(src)
if (istype(F))
if(istype(F))
new /obj/effect/decal/cleanable/ash(F)
qdel(src)
/obj/effect/decal/remains/robot/attack_hand(mob/user as mob)
return
to_chat(user, "<span class='notice'>[src] crumbles down into a pile of debris.</span>")
var/turf/simulated/floor/F = get_turf(src)
if(istype(F))
new /obj/effect/decal/cleanable/blood/gibs/robot(F)
qdel(src)