examining age fix (#12278)
This commit is contained in:
parent
0c8f54ebce
commit
32eff7d8d2
|
|
@ -509,10 +509,14 @@ public sealed partial class HumanoidSystem : SharedHumanoidSystem
|
|||
}
|
||||
|
||||
if (age < speciesPrototype.YoungAge)
|
||||
{
|
||||
return Loc.GetString("identity-age-young");
|
||||
}
|
||||
|
||||
if (age < speciesPrototype.OldAge)
|
||||
Loc.GetString("identity-age-middle-aged");
|
||||
{
|
||||
return Loc.GetString("identity-age-middle-aged");
|
||||
}
|
||||
|
||||
return Loc.GetString("identity-age-old");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue