diff --git a/code/game/objects/items/devices/suit_cooling.dm b/code/game/objects/items/devices/suit_cooling.dm index 550ea043801..c453e96c439 100644 --- a/code/game/objects/items/devices/suit_cooling.dm +++ b/code/game/objects/items/devices/suit_cooling.dm @@ -4,7 +4,7 @@ w_class = 4 icon = 'icons/obj/device.dmi' icon_state = "suitcooler0" - slot_flags = SLOT_BACK //you can carry it on your back if you want, but it won't do anything unless attached to suit storage + slot_flags = SLOT_BACK //copied from tank.dm flags = CONDUCT @@ -87,7 +87,7 @@ var/mob/living/carbon/human/H = M - if (!H.wear_suit || H.s_store != src) + if (!H.wear_suit || (H.s_store != src && H.back != src)) return 0 return 1