From e6246d1f1a6f013546f4afe5f4ccf91fbbc1bcc6 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Tue, 5 Sep 2017 17:47:02 -0400 Subject: [PATCH] fixes runtime --- code/citadel/cit_crewobjectives.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/citadel/cit_crewobjectives.dm b/code/citadel/cit_crewobjectives.dm index f6ea333413..024ddaaa98 100644 --- a/code/citadel/cit_crewobjectives.dm +++ b/code/citadel/cit_crewobjectives.dm @@ -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()