This commit is contained in:
HarpyEagle
2015-08-12 12:21:28 -04:00
parent 9609ce0b0d
commit a62edc5b3a
2 changed files with 2 additions and 1 deletions

View File

@@ -32,7 +32,7 @@
else if(istype(target,/turf))
user << "<span class='notice'>You scrub \the [target.name] clean.</span>"
var/turf/T = target
T.clean()
T.clean(src)
else
user << "<span class='notice'>You clean \the [target.name].</span>"
target.clean_blood()

View File

@@ -16,6 +16,7 @@
/obj/item/weapon/mop/New()
create_reagents(5)
//expects an atom containing the reagents used to clean the turf
/turf/proc/clean(atom/source)
if(source.reagents.has_reagent("water", 1))
clean_blood()