Merge pull request #8733 from MrPerson/cold_slowdown_speedup

Reduces penalty to movespeed from being cold
This commit is contained in:
Cheridan
2015-04-10 12:48:39 -05:00
2 changed files with 3 additions and 2 deletions
@@ -697,8 +697,8 @@
if((H.disabilities & FAT))
mspeed += 1.5
if(H.bodytemperature < 283.222)
mspeed += (283.222 - H.bodytemperature) / 10 * (grav+0.5)
if(H.bodytemperature < BODYTEMP_COLD_DAMAGE_LIMIT)
mspeed += (BODYTEMP_COLD_DAMAGE_LIMIT - H.bodytemperature) / COLD_SLOWDOWN_FACTOR
mspeed += speedmod