From 2b4ee6f0a7c8ce8ceb023ebb52cf78f1f0dee137 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 6 Nov 2020 01:43:31 +0100 Subject: [PATCH] [MIRROR] Webedit fixing the logic of a statement about mecha armor plate overlays (#1577) * Webedit fixing the logic of a statement about mecha armor plate overlays (#54784) * Webedit fixing the logic of a statement about mecha armor plate overlays Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com> --- code/datums/components/armor_plate.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/armor_plate.dm b/code/datums/components/armor_plate.dm index 41f127c9aab..88887dc80df 100644 --- a/code/datums/components/armor_plate.dm +++ b/code/datums/components/armor_plate.dm @@ -92,6 +92,6 @@ var/overlay_string = "ripley-g" if(amount >= 3) overlay_string += "-full" - if(LAZYLEN(mech.occupants)) + if(!LAZYLEN(mech.occupants)) overlay_string += "-open" overlays += overlay_string