Forgot about decimals in my metroid runtime fix

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2948 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
quartz235@gmail.com
2012-01-13 05:02:50 +00:00
parent a14e55b56f
commit ecc367e059
@@ -354,7 +354,7 @@
Tempstun = 1
if(bodytemperature <= (T0C - 50)) // hurt temperature
if(bodytemperature <= 49) // sqrting negative numbers is bad
if(bodytemperature <= 50) // sqrting negative numbers is bad
adjustFireLoss(200)
else
adjustFireLoss(round(sqrt(bodytemperature)) * 2)