From 7711bc1751afac58d861b217cdc8d43cd84466cf Mon Sep 17 00:00:00 2001 From: Putnam Date: Thu, 17 Dec 2020 23:33:36 -0800 Subject: [PATCH 1/2] Makes gear harness cover nothing --- code/modules/clothing/under/miscellaneous.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index 7e6a9ca5bf..824da180d1 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -169,6 +169,7 @@ icon_state = "gear_harness" item_state = "gear_harness" can_adjust = FALSE + body_parts_covered = NONE /obj/item/clothing/under/misc/durathread name = "durathread jumpsuit" From 79e71b54e25de600f40e03dd115dafae4a78d4a6 Mon Sep 17 00:00:00 2001 From: Putnam Date: Sat, 19 Dec 2020 19:01:31 -0800 Subject: [PATCH 2/2] Made gear harness adjustable instead of none-cover by default. --- code/modules/clothing/under/miscellaneous.dm | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index 824da180d1..2a5d6974ef 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -168,8 +168,15 @@ desc = "A simple, inconspicuous harness replacement for a jumpsuit." icon_state = "gear_harness" item_state = "gear_harness" - can_adjust = FALSE - body_parts_covered = NONE + 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" @@ -325,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?" @@ -337,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" - +