Special thanks to the kind folks over at Bay12 for spotting the problem.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2638 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
vageyenaman@gmail.com
2011-12-08 00:46:15 +00:00
parent 73245d553c
commit cc59093135
+2 -2
View File
@@ -23,7 +23,7 @@
var/style = styles.Find(character.hair_style.type)
if(style)
hair = style * hrange + hrange - rand(1,hrange-1)
hair = style * hrange - rand(1,hrange-1)
else
hair = 0
@@ -33,7 +33,7 @@
var/f_style = face_styles.Find(character.facial_hair_style.type)
if(f_style)
beard = f_style * f_hrange + f_hrange - rand(1,f_hrange-1)
beard = f_style * f_hrange - rand(1,f_hrange-1)
else
beard = 0