diff --git a/code/__HELPERS/_cit_helpers.dm b/code/__HELPERS/_cit_helpers.dm index ae8dd0fe..89486c36 100644 --- a/code/__HELPERS/_cit_helpers.dm +++ b/code/__HELPERS/_cit_helpers.dm @@ -162,7 +162,7 @@ GLOBAL_VAR_INIT(miscreants_allowed, FALSE) if(!L) L = get_equipped_items() for(var/obj/item/I in L) - if(I.body_parts_covered & GROIN & !do_not_cover_butt) + if(I.body_parts_covered & GROIN & !I.do_not_cover_butt) return FALSE return TRUE diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index d0253d00..43ac13fb 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -125,7 +125,7 @@ GLOBAL_VAR_INIT(rpg_loot_items, FALSE) var/price = 0 //Hyper, for clothes that reveal your behind! butt stuff, you know how it is. - var/do_not_cover_butt = false + var/do_not_cover_butt = FALSE /obj/item/Initialize() diff --git a/hyperstation/code/obj/kinkyclothes.dm b/hyperstation/code/obj/kinkyclothes.dm index 7231091f..dbdcbd05 100644 --- a/hyperstation/code/obj/kinkyclothes.dm +++ b/hyperstation/code/obj/kinkyclothes.dm @@ -86,7 +86,7 @@ obj/item/clothing/neck/stole/black item_state = "r_suit" can_adjust = FALSE mutantrace_variation = NO_MUTANTRACE_VARIATION - do_not_cover_butt = true + do_not_cover_butt = TRUE /obj/item/clothing/under/sexynursesuit name = "Sexy nurse outfit" diff --git a/modular_citadel/code/modules/clothing/under/polychromic_clothes.dm b/modular_citadel/code/modules/clothing/under/polychromic_clothes.dm index acfa4704..a91e5b81 100644 --- a/modular_citadel/code/modules/clothing/under/polychromic_clothes.dm +++ b/modular_citadel/code/modules/clothing/under/polychromic_clothes.dm @@ -144,7 +144,7 @@ primary_color = "#FFFFFF" //RGB in hexcode secondary_color = "#8CC6FF" body_parts_covered = GROIN - do_not_cover_butt = true + do_not_cover_butt = TRUE /obj/item/clothing/under/polychromic/bottomless name = "polychromic bottomless shirt" @@ -178,7 +178,7 @@ primary_color = "#808080" //RGB in hexcode secondary_color = "#FFFFFF" body_parts_covered = CHEST|GROIN - do_not_cover_butt = true + do_not_cover_butt = TRUE /obj/item/clothing/under/polychromic/stripper name = "polychromic stripper outfit" @@ -190,7 +190,7 @@ primary_color = "#808080" //RGB in hexcode secondary_color = "#FFFFFF" body_parts_covered = CHEST|GROIN - do_not_cover_butt = true + do_not_cover_butt = TRUE /obj/item/clothing/under/polychromic/bulge name = "polychromic voluminous thong" @@ -202,7 +202,7 @@ primary_color = "#808080" //RGB in hexcode secondary_color = "#FF3535" body_parts_covered = GROIN - do_not_cover_butt = true + do_not_cover_butt = TRUE /obj/item/clothing/under/polychromic/shortsbra name = "Kromatic Shorts and Top" @@ -236,4 +236,4 @@ secondary_color = "#eb7a7a" tertiary_color = "#ffffff" body_parts_covered = CHEST|GROIN - do_not_cover_butt = true \ No newline at end of file + do_not_cover_butt = TRUE \ No newline at end of file