Comments out majormutate() being called by radiation

This commit is contained in:
Wizardcrying
2015-11-09 00:57:18 -08:00
parent 37c0b9a61d
commit c610cb744e
2 changed files with 4 additions and 4 deletions

View File

@@ -88,12 +88,12 @@ var/global/list/disease2_list = list()
if(stage <= 1 && clicks == 0) // with a certain chance, the mob may become immune to the disease before it starts properly if(stage <= 1 && clicks == 0) // with a certain chance, the mob may become immune to the disease before it starts properly
if(prob(5)) if(prob(5))
mob.antibodies |= antigen // 20% immunity is a good chance IMO, because it allows finding an immune person easily mob.antibodies |= antigen // 20% immunity is a good chance IMO, because it allows finding an immune person easily
/*
if(mob.radiation > 50) if(mob.radiation > 50)
if(prob(1)) if(prob(1))
majormutate() majormutate()
log += "<br />[timestamp()] MAJORMUTATE (rads)!" log += "<br />[timestamp()] MAJORMUTATE (rads)!"
*/
//Space antibiotics stop disease completely (temporary) //Space antibiotics stop disease completely (temporary)
if(mob.reagents.has_reagent("spaceacillin")) if(mob.reagents.has_reagent("spaceacillin"))

View File

@@ -136,10 +136,10 @@
return return
if(mob.stat == 2) if(mob.stat == 2)
return return
if(mob.radiation > 50) /* if(mob.radiation > 50)
if(prob(1)) if(prob(1))
majormutate() majormutate()
if(mob.reagents.has_reagent("spaceacillin")) */ if(mob.reagents.has_reagent("spaceacillin"))
return return
if(prob(stageprob) && prob(25 + (clicks/100)) && stage != 4) if(prob(stageprob) && prob(25 + (clicks/100)) && stage != 4)
stage++ stage++