diff --git a/code/game/antagonist/outsider/wizard.dm b/code/game/antagonist/outsider/wizard.dm index 37a6be3ce80..b338576a216 100644 --- a/code/game/antagonist/outsider/wizard.dm +++ b/code/game/antagonist/outsider/wizard.dm @@ -126,6 +126,7 @@ var/datum/antagonist/wizard/wizards obj/item/clothing var/wizard_garb = 0 + var/no_overheat = FALSE // Checks to see if the clothing is ignored for the purpose of overheating messages. // Does this clothing slot count as wizard garb? (Combines a few checks) /proc/is_wiz_garb(var/obj/item/clothing/C) diff --git a/code/modules/clothing/under/xenos/tajara.dm b/code/modules/clothing/under/xenos/tajara.dm index c9be0bcd1a3..17ecd1667cf 100644 --- a/code/modules/clothing/under/xenos/tajara.dm +++ b/code/modules/clothing/under/xenos/tajara.dm @@ -8,6 +8,7 @@ desc_fluff = "Having direct and friendly contact with humanity, The People's Republic of Adhomai has been the most influenced by the spacer fashion. The most known \ being the \"assistant jumpsuits\" which directly inspired the design of factory overalls, the plight and low pay of the assistants being close to the hearts of Tajara Hadiist \ workers and their Republic." + no_overheat = TRUE /obj/item/clothing/under/tajaran/fancy name = "fancy uniform" diff --git a/code/modules/mob/living/carbon/human/species/species.dm b/code/modules/mob/living/carbon/human/species/species.dm index 1592aab7032..7765684deb3 100644 --- a/code/modules/mob/living/carbon/human/species/species.dm +++ b/code/modules/mob/living/carbon/human/species/species.dm @@ -295,7 +295,7 @@ for(var/obj/item/clothing/clothes in H) if(H.l_hand == clothes|| H.r_hand == clothes) continue - if((clothes.body_parts_covered & UPPER_TORSO) && (clothes.body_parts_covered & LOWER_TORSO)) + if((clothes.body_parts_covered & UPPER_TORSO) && (clothes.body_parts_covered & LOWER_TORSO) && !clothes.no_overheat) covered = 1 break diff --git a/html/changelogs/TajClothHeat.yml b/html/changelogs/TajClothHeat.yml new file mode 100644 index 00000000000..4d122af6a1f --- /dev/null +++ b/html/changelogs/TajClothHeat.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - bugfix: "Taj specific clothing will no longer give the message that they are overheating."