From a5a298a4517033c1f47bdaf8d4dc6990bf961869 Mon Sep 17 00:00:00 2001 From: SchrodingersWolf <108938550+SchrodingersWolf@users.noreply.github.com> Date: Fri, 20 Oct 2023 15:13:13 -0400 Subject: [PATCH] Changes what reagents are allowed within normal Hyposprays (#22918) * And that is how I lost my Medical license * Lavaland my beloathed --- code/modules/reagents/reagent_containers/hypospray.dm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/code/modules/reagents/reagent_containers/hypospray.dm b/code/modules/reagents/reagent_containers/hypospray.dm index 8a97a036e85..e45e71c20a6 100644 --- a/code/modules/reagents/reagent_containers/hypospray.dm +++ b/code/modules/reagents/reagent_containers/hypospray.dm @@ -17,9 +17,11 @@ slot_flags = SLOT_FLAG_BELT var/ignore_flags = FALSE var/safety_hypo = FALSE - var/static/list/safe_chem_list = list("antihol", "charcoal", "epinephrine", "insulin", "teporone", "salbutamol","omnizine", - "stimulants", "synaptizine", "potass_iodide", "oculine", "mannitol", "spaceacillin", "salglu_solution", - "sal_acid", "cryoxadone", "blood", "hydrocodone", "mitocholide", "rezadone", "menthol") + var/static/list/safe_chem_list = list("antihol", "charcoal", "epinephrine", "insulin", "teporone", "salbutamol", "omnizine", + "weak_omnizine", "godblood", "potass_iodide", "oculine", "mannitol", "spaceacillin", "salglu_solution", + "sal_acid", "cryoxadone", "sugar", "hydrocodone", "mitocholide", "rezadone", "menthol", + "mutadone", "sanguine_reagent", "iron", "ephedrine", "heparin", "corazone", "sodiumchloride", + "lavaland_extract", "synaptizine", "bicaridine", "kelotane") /obj/item/reagent_containers/hypospray/proc/apply(mob/living/M, mob/user) if(!reagents.total_volume)