From 655e8da32dcfbceef2b5f2ca64abc88d377d3ac4 Mon Sep 17 00:00:00 2001 From: Bloop Date: Fri, 23 Jun 2023 18:29:21 -0400 Subject: [PATCH] [NO GBP] Hotfix - Fixes moth suits not hiding wings like they're supposed to (#21922) Fixes moth suit not hiding wings like it's supposed to --- code/modules/surgery/organs/external/wings/moth_wings.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/organs/external/wings/moth_wings.dm b/code/modules/surgery/organs/external/wings/moth_wings.dm index 37a75f1cba4..d6bb8358414 100644 --- a/code/modules/surgery/organs/external/wings/moth_wings.dm +++ b/code/modules/surgery/organs/external/wings/moth_wings.dm @@ -89,7 +89,7 @@ /datum/bodypart_overlay/mutant/wings/moth/can_draw_on_bodypart(mob/living/carbon/human/human) if(!(human.wear_suit?.flags_inv & HIDEMUTWINGS)) return ..(human, ignore_suit = TRUE) //SKYRAT - Customization - ORIGINAL: return TRUE - return ..() //SKYRAT EDIT - Customization - ORIGINAL: return FALSE + return FALSE /datum/bodypart_overlay/mutant/wings/moth/get_base_icon_state() return burnt ? burn_datum.icon_state : sprite_datum.icon_state