Changed age limits to 20-65, added an icon that I forgot to commit.

Signed-off-by: Mloc <colmohici@gmail.com>
This commit is contained in:
Mloc
2012-04-30 21:29:10 +01:00
parent 21673b9100
commit a33be4b8ca
3 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -636,7 +636,7 @@ datum/preferences
if("input")
var/new_age = input(user, "Please select type in age: 15-45", "Character Generation") as num
if(new_age)
age = max(min(round(text2num(new_age)), 45), 15)
age = max(min(round(text2num(new_age)), 65), 20)
if("random")
age = rand (20, 45)
@@ -15,7 +15,7 @@ datum/preferences
underwear = 1
backbag = 2
b_type = pick("A+", "A-", "B+", "B-", "AB+", "AB-", "O+", "O-")
age = rand(19,35)
age = rand(20,65)
copy_to(H,1)
proc/randomize_name()