mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-08-24 12:36:22 +01:00
Merge pull request #5242 from Anewbe/chem_fix
Chemicals should process again
This commit is contained in:
@@ -103,9 +103,9 @@
|
||||
if(dose >= 15)
|
||||
M.druggy = max(M.druggy, 5)
|
||||
if(alien != IS_DIONA)
|
||||
M.drowsyness = max(0, M.drowsyness - 6 * removed * chem_effective = 0.66)
|
||||
M.hallucination = max(0, M.hallucination - 9 * removed * chem_effective = 0.66)
|
||||
M.adjustToxLoss(-4 * removed * chem_effective = 0.66)
|
||||
M.drowsyness = max(0, M.drowsyness - 6 * removed * chem_effective)
|
||||
M.hallucination = max(0, M.hallucination - 9 * removed * chem_effective)
|
||||
M.adjustToxLoss(-4 * removed * chem_effective)
|
||||
|
||||
/datum/reagent/carthatoline
|
||||
name = "Carthatoline"
|
||||
@@ -392,7 +392,6 @@
|
||||
/datum/reagent/alkysine/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
|
||||
if(alien == IS_DIONA)
|
||||
return
|
||||
var/
|
||||
var/chem_effective = 1
|
||||
if(alien == IS_SLIME)
|
||||
chem_effective = 0.25
|
||||
|
||||
Reference in New Issue
Block a user