Fix really silly mistake

This commit is contained in:
TDSSS
2019-09-11 07:48:45 +02:00
parent 7e4b757f81
commit 86eb450c56
2 changed files with 2 additions and 1 deletions
@@ -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
@@ -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)