From f511641363ca3a60432878f03b7c2506c488feeb Mon Sep 17 00:00:00 2001 From: Verkister Date: Sat, 22 Aug 2020 11:12:18 +0300 Subject: [PATCH 1/2] Fixes a copypaste slip with heat protection (#7536) Found while digging around for something else --- code/modules/clothing/clothing.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index be8f3567f9b..213cc8f694e 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -111,7 +111,7 @@ . = FALSE if(LAZYLEN(accessories)) for(var/obj/item/clothing/C in accessories) - if(C.handle_low_temperature(tempcheck)) + if(C.handle_high_temperature(tempcheck)) . = TRUE if(max_heat_protection_temperature && max_heat_protection_temperature >= tempcheck)