Spawn removal 4 [wi[ (#19086)

* Spawn removal 4

* Code review I
This commit is contained in:
coiax
2016-07-04 03:24:52 +01:00
committed by oranges
parent 3ba9053fde
commit cb5cdf60cb
@@ -817,11 +817,9 @@
H.emote("collapse")
if(prob(15))
if(!( H.hair_style == "Shaved") || !(H.hair_style == "Bald") || (HAIR in specflags))
H << "<span class='danger'>Your hair starts to fall out in clumps...<span>"
spawn(50)
H.facial_hair_style = "Shaved"
H.hair_style = "Bald"
H.update_hair()
H << "<span class='danger'>Your hair starts to \
fall out in clumps...<span>"
addtimer(src, "go_bald", 50, TRUE, H)
if(75 to 100)
if(prob(1))
@@ -832,6 +830,11 @@
return 0
return 1
/datum/species/proc/go_bald(mob/living/carbon/human/H)
H.facial_hair_style = "Shaved"
H.hair_style = "Bald"
H.update_hair()
////////////////
// MOVE SPEED //
////////////////