From 33e338ebfc71fd3c5e40413a92b18de1fcbecaf9 Mon Sep 17 00:00:00 2001 From: FlufflesTheDog Date: Sun, 22 Dec 2024 18:34:07 -0700 Subject: [PATCH] Fixes xeno maid not having a sprite (#4702) we don't got a sprite for that --- .../master_files/code/modules/mob/basic/alien/_alien.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modular_nova/master_files/code/modules/mob/basic/alien/_alien.dm b/modular_nova/master_files/code/modules/mob/basic/alien/_alien.dm index b2ce795683b..11914e21ae8 100644 --- a/modular_nova/master_files/code/modules/mob/basic/alien/_alien.dm +++ b/modular_nova/master_files/code/modules/mob/basic/alien/_alien.dm @@ -6,3 +6,8 @@ icon_dead = "aliendrone_dead" pixel_x = -16 base_pixel_x = -16 + +/mob/living/basic/alien/maid // Back to their normal sprite because we don't have a custom one + icon = 'icons/mob/nonhuman-player/alien.dmi' + pixel_x = 0 + base_pixel_x = 0