Fixes #9738 - reagents always overdose

This commit is contained in:
Kelenius
2015-06-08 12:41:58 +03:00
parent b6a0ac043f
commit 37f02ebc93

View File

@@ -38,7 +38,7 @@
return
if(!affects_dead && M.stat == DEAD)
return
if(overdose && (location == CHEM_BLOOD))
if(overdose && (dose > overdose) && (location == CHEM_BLOOD))
overdose(M, alien)
var/removed = metabolism
if(ingest_met && (location == CHEM_INGEST))