Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
Update NamingSystem.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Zekins3366 authored Mar 27, 2024
1 parent 69b6bdd commit cf8d86b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Content.Shared/Humanoid/NamingSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ public string GetName(string species, Gender? gender = null)
case SpeciesNaming.FirstDashFirst:
return Loc.GetString("namepreset-firstdashfirst",
("first1", GetFirstName(speciesProto, gender)), ("first2", GetFirstName(speciesProto, gender)));
case SpeciesNaming.FirstDashNoDashLast:
return Loc.GetString("namepreset-firstdashnodashlast",
case SpeciesNaming.XnoY:

Check failure on line 38 in Content.Shared/Humanoid/NamingSystem.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

'SpeciesNaming' does not contain a definition for 'XnoY'

Check failure on line 38 in Content.Shared/Humanoid/NamingSystem.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

'SpeciesNaming' does not contain a definition for 'XnoY'
return Loc.GetString("namepreset-x-no-y",
("first", GetFirstName(speciesProto, gender)), ("last", GetLastName(speciesProto, gender)));
case SpeciesNaming.FirstLast:
default:
Expand Down

0 comments on commit cf8d86b

Please sign in to comment.