examining age fix (#12278)

This commit is contained in:
Francesco
2022-10-30 19:54:20 +01:00
committed by GitHub
parent 0c8f54ebce
commit 32eff7d8d2

View File

@@ -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");
}