diff --git a/code/datums/diseases/critical.dm b/code/datums/diseases/critical.dm index 575059e2150..d3c1da6e6c1 100644 --- a/code/datums/diseases/critical.dm +++ b/code/datums/diseases/critical.dm @@ -25,7 +25,7 @@ max_stages = 3 spread_flags = SPECIAL cure_text = "Saline-Glucose Solution" - cures = list("salglu_solution") + cures = list("salglu_solution", "syndicate_nanites") cure_chance = 10 viable_mobtypes = list(/mob/living/carbon/human) stage_prob = 6 @@ -86,7 +86,7 @@ max_stages = 3 spread_flags = SPECIAL cure_text = "Atropine, Epinephrine, or Heparin" - cures = list("atropine", "epinephrine", "heparin") + cures = list("atropine", "epinephrine", "heparin", "syndicate_nanites") cure_chance = 10 needs_all_cures = FALSE viable_mobtypes = list(/mob/living/carbon/human) diff --git a/code/modules/reagents/reagent_containers/borghydro.dm b/code/modules/reagents/reagent_containers/borghydro.dm index c5809775361..8338253fc6c 100644 --- a/code/modules/reagents/reagent_containers/borghydro.dm +++ b/code/modules/reagents/reagent_containers/borghydro.dm @@ -31,7 +31,7 @@ icon_state = "borghypo_s" charge_cost = 20 recharge_time = 2 - reagent_ids = list("syndicate_nanites", "potass_iodide", "hydrocodone", "salglu_solution", "epinephrine", "spaceacillin") + reagent_ids = list("syndicate_nanites", "potass_iodide", "hydrocodone") bypass_protection = 1 /obj/item/reagent_containers/borghypo/New()