Merge pull request #4726 from CHOMPStation2/upstream-merge-13526

[MIRROR] Makes fire stacks be able to heat up body indefinetely
This commit is contained in:
Nadyr
2022-08-17 18:01:28 -04:00
committed by GitHub
+4 -2
View File
@@ -1985,8 +1985,10 @@ End Chomp edit */
// increase your body temperature beyond 250C, but it's possible something else (atmos) has heated us up beyond it,
// so don't worry about the firestacks at that point. Really, we should be cooling the room down, because it has
// to expend energy to heat our body up! But let's not worry about that.
if((bodytemperature + fire_temp_add) > HUMAN_COMBUSTION_TEMP)
return
// This whole section above is ABSOLUTELY STUPID and makes no sense and this would prevent too-high-heat from even being able to hurt someone. No. We will heat up for as long as needed.
//if((bodytemperature + fire_temp_add) > HUMAN_COMBUSTION_TEMP)
// return
bodytemperature += fire_temp_add