From c156d090818bc500bcb59782a8b0859a29ef2496 Mon Sep 17 00:00:00 2001 From: Ed Date: Sun, 21 Apr 2024 15:46:46 +0300 Subject: [PATCH] add comment --- Content.Shared/Humanoid/NamingSystem.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Content.Shared/Humanoid/NamingSystem.cs b/Content.Shared/Humanoid/NamingSystem.cs index 0fd4149c53..3d879172a9 100644 --- a/Content.Shared/Humanoid/NamingSystem.cs +++ b/Content.Shared/Humanoid/NamingSystem.cs @@ -47,20 +47,20 @@ namespace Content.Shared.Humanoid switch (gender) { case Gender.Male: - return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.MaleFirstNames).Values)); + return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.MaleFirstNames).Values)); //CrystallPunk name localization case Gender.Female: - return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.FemaleFirstNames).Values)); + return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.FemaleFirstNames).Values)); //CrystallPunk name localization default: if (_random.Prob(0.5f)) - return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.MaleFirstNames).Values)); + return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.MaleFirstNames).Values)); //CrystallPunk name localization else - return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.FemaleFirstNames).Values)); + return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.FemaleFirstNames).Values)); //CrystallPunk name localization } } public string GetLastName(SpeciesPrototype speciesProto) { - return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.LastNames).Values)); + return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.LastNames).Values)); //CrystallPunk name localization } } }