Tweaks wound infection a bit

Conflicts:
	code/modules/mob/living/carbon/carbon.dm
This commit is contained in:
mwerezak
2014-06-19 21:39:56 -04:00
committed by ZomgPonies
parent ba08210cd7
commit 02572867e4
4 changed files with 13 additions and 12 deletions
+5 -4
View File
@@ -358,13 +358,14 @@ This function completely restores a damaged organ to perfect condition.
if (W.germ_level > germ_level) //Badly infected wounds raise internal germ levels
germ_level++
if(germ_level > GANGREN_LEVEL_ONE && prob(round(germ_level/10))) //aiming for a light infection to become serious after 40 minutes, standing still
germ_level += 1
if (prob(50))
owner.adjustToxLoss(1)
if(germ_level > GANGREN_LEVEL_TWO)
germ_level++
owner.adjustToxLoss(1)
else if(germ_level > GANGREN_LEVEL_ONE && prob(round(germ_level/10))) //aiming for a light infection to become serious after 40 minutes, standing still
germ_level += 1
owner.adjustToxLoss(1)
/*