Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 02403cd

Browse files
authored
double deal on fixes (#21749)
1 parent d3b760f commit 02403cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

code/modules/clothing/clothing.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ BLIND // can't see anything
443443
adjusted = DIGIALT_STYLE
444444
if(DIGIALT_STYLE)
445445
adjusted = DIGITIGRADE_STYLE
446-
if(adjusted == NORMAL_STYLE || adjusted == DIGIALT_STYLE) //Yogs End
446+
if(adjusted == ALT_STYLE || adjusted == DIGIALT_STYLE) //Yogs End
447447
if(fitted != FEMALE_UNIFORM_TOP)
448448
fitted = NO_FEMALE_UNIFORM
449449
if(!alt_covers_chest) // for the special snowflake suits that expose the chest when adjusted (and also the arms, realistically)

code/modules/mob/living/carbon/human/species.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -925,7 +925,7 @@ GLOBAL_LIST_EMPTY(features_by_species)
925925
bodyparts_to_add -= "preternis_eye"
926926

927927
if("preternis_core" in mutant_bodyparts)
928-
if(H.w_uniform || H.wear_suit)
928+
if(!get_location_accessible(H, BODY_ZONE_CHEST))
929929
bodyparts_to_add -= "preternis_core"
930930

931931
if("pod_hair" in mutant_bodyparts)

0 commit comments

Comments
 (0)