Update code/modules/reagents/Chemistry-Reagents.dm

Co-Authored-By: Izac Joof Forsgren <izac10@live.com>
This commit is contained in:
Killian
2020-03-11 19:12:42 +00:00
committed by GitHub
parent 7b79762980
commit 0a94573a8c

View File

@@ -125,7 +125,8 @@
affect_ingest(M, alien, removed * ingest_abs_mult)
if(CHEM_TOUCH)
affect_touch(M, alien, removed)
if(overdose && (volume > overdose * M.species.chemOD_threshold) && (active_metab.metabolism_class != CHEM_TOUCH && !can_overdose_touch))
if(overdose && (volume > overdose * M.species.chemOD_threshold) && (active_metab.metabolism_class != CHEM_TOUCH && !can_overdose_touch)) //YW EDIT
overdose(M, alien, removed)
remove_self(removed)
return
@@ -190,4 +191,3 @@
/datum/reagent/proc/reaction_mob(var/mob/target)
touch_mob(target)