diff --git a/code/datums/elements/cleaning.dm b/code/datums/elements/cleaning.dm
index 9f7138b587c..57d58c592fe 100644
--- a/code/datums/elements/cleaning.dm
+++ b/code/datums/elements/cleaning.dm
@@ -14,17 +14,17 @@
if(!isturf(tile))
return
- tile.wash(CLEAN_WASH)
+ tile.wash(CLEAN_SCRUB)
for(var/A in tile)
// Clean small items that are lying on the ground
if(isitem(A))
var/obj/item/I = A
if(I.w_class <= WEIGHT_CLASS_SMALL && !ismob(I.loc))
- I.wash(CLEAN_WASH)
+ I.wash(CLEAN_SCRUB)
// Clean humans that are lying down
else if(ishuman(A))
var/mob/living/carbon/human/cleaned_human = A
if(!(cleaned_human.mobility_flags & MOBILITY_STAND))
- cleaned_human.wash(CLEAN_WASH)
+ cleaned_human.wash(CLEAN_SCRUB)
cleaned_human.regenerate_icons()
to_chat(cleaned_human, "[AM] cleans your face!")
diff --git a/code/modules/mob/living/simple_animal/bot/cleanbot.dm b/code/modules/mob/living/simple_animal/bot/cleanbot.dm
index 89fdd74fe19..93bd84ca503 100644
--- a/code/modules/mob/living/simple_animal/bot/cleanbot.dm
+++ b/code/modules/mob/living/simple_animal/bot/cleanbot.dm
@@ -318,7 +318,7 @@
var/turf/T = get_turf(A)
if(do_after(src, 1, target = T))
- T.wash(CLEAN_WASH)
+ T.wash(CLEAN_SCRUB)
visible_message("[src] cleans \the [T].")
target = null
diff --git a/code/modules/mob/living/simple_animal/hostile/alien.dm b/code/modules/mob/living/simple_animal/hostile/alien.dm
index b9a4407a57e..24dfef5e727 100644
--- a/code/modules/mob/living/simple_animal/hostile/alien.dm
+++ b/code/modules/mob/living/simple_animal/hostile/alien.dm
@@ -177,7 +177,7 @@
/mob/living/simple_animal/hostile/alien/maid/AttackingTarget()
if(ismovable(target))
- target.wash(CLEAN_WASH)
+ target.wash(CLEAN_SCRUB)
if(istype(target, /obj/effect/decal/cleanable))
visible_message("[src] cleans up \the [target].")
else