From dfb5c7fde8caabb03ecdf2afacdc423d5d8c48a9 Mon Sep 17 00:00:00 2001 From: nicbn Date: Mon, 20 Nov 2017 06:37:27 -0200 Subject: [PATCH] Fixes cryo overlay thing again (#32838) --- .../atmospherics/machinery/components/unary_devices/cryo.dm | 4 ---- 1 file changed, 4 deletions(-) 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