Skip to content

Commit

Permalink
Fix really silly mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
TDSSS committed Sep 11, 2019
1 parent 7e4b757 commit 86eb450
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions code/modules/reagents/chemistry/reagents/medicine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@

/datum/reagent/medicine/omnizine/godblood
name = "Godblood"
id = "godblood"
description = "Slowly heals all damage types. Has a rather high overdose threshold. Glows with mysterious power."
overdose_threshold = 150

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) //why is add_reagent so stupid ?!?
update_icon()
addtimer(CALLBACK(src, .proc/update_icon), time_between_uses)

Expand Down

0 comments on commit 86eb450

Please sign in to comment.