Merge pull request #2527 from tigercat2000/at_least_its_not_invunerable_winky

Fix carbon/Life()
This commit is contained in:
Fox McCloud
2015-11-12 20:00:30 -05:00
2 changed files with 4 additions and 7 deletions
-7
View File
@@ -14,13 +14,6 @@ mob/living
qdel(food)
return ..()
/mob/living/carbon/Life()
..()
// Increase germ_level regularly
if(germ_level < GERM_LEVEL_AMBIENT && prob(30)) //if you're just standing there, you shouldn't get more germs beyond an ambient level
germ_level++
/mob/living/carbon/blob_act()
if (stat == DEAD)
return
+4
View File
@@ -13,6 +13,10 @@
handle_wetness()
// Increase germ_level regularly
if(germ_level < GERM_LEVEL_AMBIENT && prob(30)) //if you're just standing there, you shouldn't get more germs beyond an ambient level
germ_level++
///////////////
// BREATHING //