From 413c5984aed1be58055df2b5beb59ca3be8b61ff Mon Sep 17 00:00:00 2001 From: Mechoid Date: Sat, 2 May 2020 12:58:29 -0700 Subject: [PATCH] ..I don't know how I did that. --- code/modules/mob/living/carbon/human/life.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index e90148577c..b8ad9fb56d 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -809,7 +809,7 @@ //Handle normal clothing for(var/obj/item/clothing/C in list(head,wear_suit,w_uniform,shoes,gloves,wear_mask)) if(C) - if(C.handle_low_temperature(temperature)) + if(C.handle_high_temperature(temperature)) . |= C.get_heat_protection_flags() //See proc/get_heat_protection_flags(temperature) for the description of this proc. @@ -818,7 +818,7 @@ //Handle normal clothing for(var/obj/item/clothing/C in list(head,wear_suit,w_uniform,shoes,gloves,wear_mask)) if(C) - if(C.handle_high_temperature(temperature)) + if(C.handle_low_temperature(temperature)) . |= C.get_cold_protection_flags() /mob/living/carbon/human/get_heat_protection(temperature) //Temperature is the temperature you're being exposed to.