diff --git a/code/modules/vore/eating/living.dm b/code/modules/vore/eating/living.dm
index a0ae58a44d..41d7da16a1 100644
--- a/code/modules/vore/eating/living.dm
+++ b/code/modules/vore/eating/living.dm
@@ -359,6 +359,10 @@
if(QDELETED(tasted) || (tasted.ckey && !(tasted.client?.prefs.vore_flags & LICKABLE)) || !Adjacent(tasted) || incapacitated(ignore_restraints = TRUE))
return
+ if(ishuman(tasted))
+ var/mob/living/carbon/human/H = tasted
+ H.wash_cream()
+
visible_message("[src] licks [tasted]!","You lick [tasted]. They taste rather like [tasted.get_taste_message()].","Slurp!")
/mob/living/proc/get_taste_message(allow_generic = TRUE, datum/species/mrace)