Increases the age limit to 80 in case someone wants to play a geriatric spaceman who is tired of young men on his lawn.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4348 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
quartz235@gmail.com
2012-08-09 15:08:01 +00:00
parent 05460b5c1e
commit 257e0772bc
+3 -3
View File
@@ -475,11 +475,11 @@ datum/preferences
if(link_tags["age"])
switch(link_tags["age"])
if("input")
var/new_age = input(user, "Please select type in age: 17-45", "Character Generation") as num
var/new_age = input(user, "Please select type in age: 17-80", "Character Generation") as num
if(new_age)
age = max(min(round(text2num(new_age)), 45), 17)
age = max(min(round(text2num(new_age)), 80), 17)
if("random")
age = rand (17, 45)
age = rand (17, 80)
if(link_tags["OOC"])
var/tempnote = ""