From cd3ee6ab9032e26681e415ef719d5c3ea7d2c94b Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Tue, 7 Oct 2025 15:13:21 -0400 Subject: [PATCH] fixes xenomicrobes (#30622) --- code/datums/diseases/_MobProcs.dm | 2 +- code/modules/reagents/chemistry/reagents/disease.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/diseases/_MobProcs.dm b/code/datums/diseases/_MobProcs.dm index bc2a743e274..484f973bb21 100644 --- a/code/datums/diseases/_MobProcs.dm +++ b/code/datums/diseases/_MobProcs.dm @@ -196,7 +196,7 @@ MARK: Helpers return check_contraction_carbon(D, spread_method) /mob/living/carbon/can_contract_disease(datum/disease/D, spread_method = SPREAD_CONTACT_GENERAL) - return ..() && check_contraction_carbon(D) + return ..() && check_contraction_carbon(D) //Think this should be (D, spread_method), not touching it though as I don't know viral code //MARK: Human /mob/living/carbon/human/can_spread_disease(D, spread_method = SPREAD_CONTACT_GENERAL) diff --git a/code/modules/reagents/chemistry/reagents/disease.dm b/code/modules/reagents/chemistry/reagents/disease.dm index 6f549d5f54c..b5d01c9ee69 100644 --- a/code/modules/reagents/chemistry/reagents/disease.dm +++ b/code/modules/reagents/chemistry/reagents/disease.dm @@ -33,7 +33,7 @@ /datum/reagent/xenomicrobes/on_mob_life(mob/living/carbon/M) if(volume > 1.5) - M.ContractDisease(new /datum/disease/transformation/xeno(0)) + M.ForceContractDisease(new /datum/disease/transformation/xeno(0)) return ..() /datum/reagent/fungalspores