From 63115ebea4e99d702fd375e4438645ed77725493 Mon Sep 17 00:00:00 2001 From: ToasterBan <54711687+ToasterBan@users.noreply.github.com> Date: Sun, 14 Jul 2024 22:40:03 +0200 Subject: [PATCH] freezing now cures advanced mutation toxin (#11180) --- code/datums/diseases/transformation.dm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/code/datums/diseases/transformation.dm b/code/datums/diseases/transformation.dm index d290e5342adf3..16b09052e863e 100644 --- a/code/datums/diseases/transformation.dm +++ b/code/datums/diseases/transformation.dm @@ -157,9 +157,8 @@ /datum/disease/transformation/slime name = "Advanced Mutation Transformation" - cure_text = "frost oil" - cures = list(/datum/reagent/consumable/frostoil) - cure_chance = 80 + cure_text = "Below Freezing Temperature" + cures = list() agent = "Advanced Mutation Toxin" desc = "This highly concentrated extract converts anything into more of itself." danger = DISEASE_BIOHAZARD @@ -173,6 +172,9 @@ /datum/disease/transformation/slime/stage_act() ..() + var/mob/living/carbon/H = affected_mob + if(H.bodytemperature < T0C) + cure() switch(stage) if(1) if(ishuman(affected_mob) && affected_mob.dna)