Removes Dirty Floors (#12519)

This commit is contained in:
Fox McCloud
2019-10-08 20:58:05 -04:00
committed by variableundefined
parent 51f65222ec
commit a4641cc0cf
7 changed files with 1 additions and 25 deletions
-1
View File
@@ -27,7 +27,6 @@
/obj/item/mop/proc/clean(turf/simulated/A)
if(reagents.has_reagent("water", 1) || reagents.has_reagent("cleaner", 1) || reagents.has_reagent("holywater", 1))
A.clean_blood()
A.dirt = 0
for(var/obj/effect/O in A)
if(is_cleanable(O))
qdel(O)
-1
View File
@@ -55,7 +55,6 @@
/obj/item/soap/proc/clean_turf(turf/simulated/T)
T.clean_blood()
T.dirt = 0
for(var/obj/effect/O in T)
if(is_cleanable(O))
qdel(O)