Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dwasint committed Sep 20, 2024
1 parent 1dd23a2 commit 4ed82e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// There is an occasional bug where the temperature is miscalculated in areas with small amounts of gas.
// This is necessary to ensure that does not affect this calculation.
// Space's temperature is 2.7K and most suits that are intended to protect against any cold, protect down to 2.0K.
temperature = max(temperature, T0C)
temperature = max(temperature, TCMB)

var/thermal_protection_flags = NONE
for(var/obj/item/worn in get_equipped_items())
Expand Down

0 comments on commit 4ed82e6

Please sign in to comment.