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 075b041 commit 6f5aeb9
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.XnoY:
return Loc.GetString("namepreset-first-no-last",
case SpeciesNaming.FirstDashNoDashLast:

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 'FirstDashNoDashLast'

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 'FirstDashNoDashLast'
return Loc.GetString("namepreset-firstdashnodashlast",
("first", GetFirstName(speciesProto, gender)), ("last", GetLastName(speciesProto, gender)));
case SpeciesNaming.FirstLast:
default:
Expand Down

0 comments on commit 6f5aeb9

Please sign in to comment.