diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index 7e6a9ca5bf..2a5d6974ef 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -168,7 +168,15 @@ desc = "A simple, inconspicuous harness replacement for a jumpsuit." icon_state = "gear_harness" item_state = "gear_harness" - can_adjust = FALSE + can_adjust = TRUE + body_parts_covered = CHEST|GROIN + +/obj/item/clothing/under/misc/gear_harness/toggle_jumpsuit_adjust() + adjusted = !adjusted + if(adjusted) + body_parts_covered = NONE + else + body_parts_covered = CHEST|GROIN /obj/item/clothing/under/misc/durathread name = "durathread jumpsuit" @@ -324,7 +332,7 @@ desc = "A blue bathrobe." icon_state = "bathrobe" item_state = "bathrobe" - + /obj/item/clothing/under/misc/mechsuitred name = "red mech suit" desc = "What are you, stupid?" @@ -336,10 +344,10 @@ desc = "...Mom?" icon_state = "white_mech_suit" item_state = "white_mech_suit" - + /obj/item/clothing/under/misc/mechsuitblue name = "blue mech suit" desc = "Get in the damn robot already!" icon_state = "blue_mech_suit" item_state = "blue_mech_suit" - +