mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 06:29:23 +01:00
Reduces penalty to movespeed from being cold
It kicks in at a lower body temp and the slowdown is less harsh. You move noticeably faster than space wind, which was the goal here.
This commit is contained in:
@@ -695,8 +695,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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user