Skip to content
This repository has been archived by the owner on Oct 15, 2023. It is now read-only.

Commit

Permalink
Merge pull request #12265 from TDSSS/godblood-fix
Browse files Browse the repository at this point in the history
Fix really silly mistake
  • Loading branch information
Fox-McCloud committed Sep 11, 2019
2 parents a502733 + f02cbc4 commit 08ac93a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions code/modules/reagents/chemistry/reagents/medicine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/ruins/lavalandruin_code/fountain_hall.dm
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
return
last_process = world.time
to_chat(user, "<span class='notice'>The water feels warm and soothing as you touch it. The fountain immediately dries up shortly afterwards.</span>")
user.reagents.add_reagent(/datum/reagent/medicine/omnizine/godblood, 20)
user.reagents.add_reagent("godblood", 20)
update_icon()
addtimer(CALLBACK(src, .proc/update_icon), time_between_uses)

Expand Down

0 comments on commit 08ac93a

Please sign in to comment.