From c3d0e7d2b566553879d1d84a0635a4cd99cfb9af Mon Sep 17 00:00:00 2001 From: coiax Date: Mon, 15 Jan 2018 14:01:06 +0000 Subject: [PATCH] Xenomorph maids (and Barmaids) clean on move (#34354) :cl: coiax add: A xenomorph maid (or barmaid) cleans the floor as they walk on it. Lie down, and they'll clean your face. /:cl: - Clearly a massive xenobiology buff by letting them create simple mob janitors. - Actually implemented so the Barmaid can clean up the Emergency Escape Bar, but sure, let's buff the regular maid as well. --- code/modules/mob/living/simple_animal/hostile/alien.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/simple_animal/hostile/alien.dm b/code/modules/mob/living/simple_animal/hostile/alien.dm index 57718459fc..70881820dd 100644 --- a/code/modules/mob/living/simple_animal/hostile/alien.dm +++ b/code/modules/mob/living/simple_animal/hostile/alien.dm @@ -164,6 +164,10 @@ icon_living = "maid" icon_dead = "maid_dead" +/mob/living/simple_animal/hostile/alien/maid/Initialize(mapload) + . = ..() + AddComponent(/datum/component/cleaning) + /mob/living/simple_animal/hostile/alien/maid/AttackingTarget() if(ismovableatom(target)) if(istype(target, /obj/effect/decal/cleanable))