fixes runtime

This commit is contained in:
deathride58
2017-09-05 17:47:02 -04:00
parent d7e201bec8
commit e6246d1f1a
+2 -2
View File
@@ -232,7 +232,7 @@
var/meds = typesof(/datum/reagent/medicine) - blacklist
var/chemlist = drugs + meds + /datum/reagent/anaphrodisiac + /datum/reagent/aphrodisiac
chempath = pick(chemlist)
targetchem = chempath.id
targetchem = initial(chempath.id)
update_explanation_text()
/datum/objective/crew/chiefmedicalofficer/chems/update_explanation_text()
@@ -278,7 +278,7 @@
var/meds = typesof(/datum/reagent/medicine) - blacklist
var/chemlist = drugs + meds + /datum/reagent/anaphrodisiac + /datum/reagent/aphrodisiac
chempath = pick(chemlist)
targetchem = chempath.id
targetchem = initial(chempath.id)
update_explanation_text()
/datum/objective/crew/chemist/chems/update_explanation_text()