Renamed variables:

b_type to blood_type
h_color to hair_color
f_color to facial_hair_color
f_style to facial_hair_style
h_style to hair_style
This commit is contained in:
carnie
2013-08-01 13:48:41 +01:00
parent 3236425152
commit 02be173c60
32 changed files with 316 additions and 314 deletions
+3 -3
View File
@@ -25,15 +25,15 @@
var/new_style = input(user, "Select a facial hair style", "Grooming") as null|anything in facial_hair_styles_list
if(userloc != H.loc) return //no tele-grooming
if(new_style)
H.f_style = new_style
H.facial_hair_style = new_style
else
H.f_style = "Shaved"
H.facial_hair_style = "Shaved"
//handle normal hair
var/new_style = input(user, "Select a hair style", "Grooming") as null|anything in hair_styles_list
if(userloc != H.loc) return //no tele-grooming
if(new_style)
H.h_style = new_style
H.hair_style = new_style
H.update_hair()