From b81a4ba8d69ea8796065e6aeba2d501fd00d10fd Mon Sep 17 00:00:00 2001 From: Verkister Date: Sat, 22 Aug 2020 11:12:18 +0300 Subject: [PATCH] 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 14e9feb9a3..10b1a94c85 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)