Lungs will only pop if the breath inhaled is less than the lung's safe pressure

This commit is contained in:
Anewbe
2016-11-23 15:37:29 -06:00
parent e87d0c9b92
commit 2df0ebaaee
+1 -1
View File
@@ -368,7 +368,7 @@
safe_pressure_min *= 1.5
else if(L.is_bruised())
safe_pressure_min *= 1.25
else if(breath.total_moles < BREATH_MOLES / 5 || breath.total_moles > BREATH_MOLES * 5)
else if(breath.total_moles < safe_pressure_min || breath.total_moles > BREATH_MOLES * 5)
if (prob(8))
rupture_lung()