Skip to content

Commit

Permalink
fixed (#1729)
Browse files Browse the repository at this point in the history
  • Loading branch information
DimWhat committed Apr 23, 2024
1 parent 5cfde0a commit 9fca112
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions code/modules/clothing/under/_under.dm
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
context[SCREENTIP_CONTEXT_LMB] = "Repair suit sensors"
. = CONTEXTUAL_SCREENTIP_SET

if(can_adjust && adjusted != DIGITIGRADE_STYLE)
if(can_adjust)
context[SCREENTIP_CONTEXT_ALT_LMB] = "Wear [adjusted == ALT_STYLE ? "normally" : "casually"]"
. = CONTEXTUAL_SCREENTIP_SET

Expand Down Expand Up @@ -150,12 +150,13 @@
if(adjusted == ALT_STYLE)
adjust_to_normal()

/* MONKESTATION EDIT
if((supports_variations_flags & CLOTHING_DIGITIGRADE_VARIATION) && ishuman(user))
var/mob/living/carbon/human/wearer = user
if(wearer.dna.species.bodytype & BODYTYPE_DIGITIGRADE)
adjusted = DIGITIGRADE_STYLE
update_appearance()

*/
/obj/item/clothing/under/equipped(mob/living/user, slot)
..()
if((slot & ITEM_SLOT_ICLOTHING) && freshly_laundered)
Expand Down Expand Up @@ -393,9 +394,10 @@
/// Returns the new state
/obj/item/clothing/under/proc/toggle_jumpsuit_adjust()
switch(adjusted)
/* MONKESTATION EDIT
if(DIGITIGRADE_STYLE)
return

*/
if(NORMAL_STYLE)
adjust_to_alt()

Expand Down

0 comments on commit 9fca112

Please sign in to comment.