Skip to content

Commit

Permalink
freezing now cures advanced mutation toxin (#11180)
Browse files Browse the repository at this point in the history
  • Loading branch information
ToasterBan authored Jul 14, 2024
1 parent b6cd063 commit 63115eb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions code/datums/diseases/transformation.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
Expand Down

0 comments on commit 63115eb

Please sign in to comment.