Merge pull request #12265 from TDSSS/godblood-fix

Fix really silly mistake
This commit is contained in:
Fox McCloud
2019-09-11 06:38:47 -04:00
committed by GitHub
2 changed files with 7 additions and 6 deletions
@@ -291,11 +291,6 @@
addiction_chance = 5
taste_description = "health"
/datum/reagent/medicine/omnizine/godblood
name = "Godblood"
description = "Slowly heals all damage types. Has a rather high overdose threshold. Glows with mysterious power."
overdose_threshold = 150
/datum/reagent/medicine/omnizine/on_mob_life(mob/living/M)
var/update_flags = STATUS_UPDATE_NONE
update_flags |= M.adjustToxLoss(-1*REAGENTS_EFFECT_MULTIPLIER, FALSE)
@@ -964,6 +959,12 @@
metabolization_rate = 0.1
taste_description = "faint hope"
/datum/reagent/medicine/omnizine_diluted/godblood
name = "Godblood"
id = "godblood"
description = "Slowly heals all damage types. Has a rather high overdose threshold. Glows with mysterious power."
overdose_threshold = 150
/datum/reagent/medicine/omnizine_diluted/on_mob_life(mob/living/M)
var/update_flags = STATUS_UPDATE_NONE
update_flags |= M.adjustToxLoss(-0.5*REAGENTS_EFFECT_MULTIPLIER, FALSE)