set default age to be 18 instead of 0 years old

master
Ferrum Princeps I 2018-08-21 12:08:40 -05:00 committed by GitHub
parent 927cb64128
commit 6e67bd6b41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ function create_age(player)
local playerName = player:get_player_name()
aging.agingPeople[playerName] = {}
aging.agingPeople[playerName].name = playerName
aging.agingPeople[playerName].age = 0
aging.agingPeople[playerName].age = 18
aging.agingPeople[playerName].immortality = false
aging.agingPeople[playerName].inheritance = false
cure(player)