diff --git a/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm b/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm index cda455d2781..3eec1e2c5b9 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm @@ -96,7 +96,6 @@ if(ismonkey(occupant)) // Monkey occupant_overlay = image(CRYOMOBS, "monkey") - occupant_overlay.copy_overlays(occupant) else if(isalienadult(occupant)) if(isalienroyal(occupant)) // Queen and prae occupant_overlay = image(CRYOMOBS, "alienq") @@ -109,9 +108,6 @@ else if(ishuman(occupant) || islarva(occupant) || (isanimal(occupant) && !ismegafauna(occupant))) // Mobs that are smaller than cryotube occupant_overlay = image(occupant.icon, occupant.icon_state) - - if(ishuman(occupant) || islarva(occupant) || (isanimal(occupant) && !ismegafauna(occupant))) // Mobs that are smaller than cryotube - occupant_overlay = image(occupant.icon, occupant.icon_state) occupant_overlay.copy_overlays(occupant) else