Soap can now clean turfs as well.

This commit is contained in:
PsiOmega
2015-04-16 08:20:00 +02:00
parent 1bd4f21c58
commit 3eab61e154
@@ -29,6 +29,10 @@
else if(istype(target,/obj/effect/decal/cleanable))
user << "<span class='notice'>You scrub \the [target.name] out.</span>"
del(target)
else if(istype(target,/turf))
user << "<span class='notice'>You scrub \the [target.name] clean.</span>"
var/turf/T = target
T.clean()
else
user << "<span class='notice'>You clean \the [target.name].</span>"
target.clean_blood()