Newcrit Death Threshold Tweaks (#13374)

This commit is contained in:
Fox McCloud
2020-05-22 03:38:56 -04:00
committed by GitHub
parent 0aaae51cab
commit 7ad36060f3
+3 -1
View File
@@ -810,7 +810,9 @@
handle_organs()
if(getBrainLoss() >= 120 || (health + (getOxyLoss() / 2)) <= -500)
var/guaranteed_death_threshold = health + (getOxyLoss() * 0.5) - (getFireLoss() * 0.67) - (getBruteLoss() * 0.67)
if(getBrainLoss() >= 120 || (guaranteed_death_threshold) <= -500)
death()
return