Merge pull request #6492 from Mechoid/FixDivbyZeroSeriouslyHowDidIDoThat

Fix The Zeros
This commit is contained in:
Atermonera
2019-10-23 15:19:24 -08:00
committed by GitHub
3 changed files with 4 additions and 7 deletions
+1 -1
View File
@@ -1630,7 +1630,7 @@
if(R.volume >= R.overdose)
temp = PULSE_NONE
return round(temp * brain_modifier)
return max(0, round(temp * brain_modifier))
/mob/living/carbon/human/proc/handle_heartbeat()
if(pulse == PULSE_NONE)