From 71b7de4daad3d561e91a5aa52855986f999a2f7a Mon Sep 17 00:00:00 2001 From: lessthanthree <83487515+lessthnthree@users.noreply.github.com> Date: Fri, 16 Jun 2023 06:01:31 -0700 Subject: [PATCH] Blacklist sansufentanyl from medical allergy quirk (#76067) ## About The Pull Request Fixes https://github.com/tgstation/tgstation/issues/76063. The whole mechanic of having HMS https://github.com/tgstation/tgstation/pull/75035 is that you have 6 pills to live. If you spawn allergic to those pills that's going to be a quick end for you. ## Changelog :cl: LT3 fix: Sansufentanyl won't roll as a potential extreme allergy for Hereditary Manifold Sickness /:cl: --- code/datums/quirks/negative_quirks.dm | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/code/datums/quirks/negative_quirks.dm b/code/datums/quirks/negative_quirks.dm index 33ec7178c4b..c0a63e37adc 100644 --- a/code/datums/quirks/negative_quirks.dm +++ b/code/datums/quirks/negative_quirks.dm @@ -973,7 +973,16 @@ quirk_flags = QUIRK_HUMAN_ONLY|QUIRK_PROCESSES mail_goodies = list(/obj/item/reagent_containers/hypospray/medipen) // epinephrine medipen stops allergic reactions var/list/allergies = list() - var/list/blacklist = list(/datum/reagent/medicine/c2,/datum/reagent/medicine/epinephrine,/datum/reagent/medicine/adminordrazine,/datum/reagent/medicine/omnizine/godblood,/datum/reagent/medicine/cordiolis_hepatico,/datum/reagent/medicine/synaphydramine,/datum/reagent/medicine/diphenhydramine) + var/list/blacklist = list( + /datum/reagent/medicine/c2, + /datum/reagent/medicine/epinephrine, + /datum/reagent/medicine/adminordrazine, + /datum/reagent/medicine/omnizine/godblood, + /datum/reagent/medicine/cordiolis_hepatico, + /datum/reagent/medicine/synaphydramine, + /datum/reagent/medicine/diphenhydramine, + /datum/reagent/medicine/sansufentanyl + ) var/allergy_string /datum/quirk/item_quirk/allergic/add_unique(client/client_source)