New Species: Diona (#11497)
* new species: Diona * more diona stuff * dey breathing now * test fixe * fix a merge * now actually fix the merge * foobar * oversight * ok now the rest of em
This commit is contained in:
@@ -26,11 +26,16 @@ namespace Content.Shared.Humanoid
|
||||
|
||||
switch (speciesProto.Naming)
|
||||
{
|
||||
case SpeciesNaming.TheFirstofLast:
|
||||
return Loc.GetString("namepreset-thefirstoflast",
|
||||
("first", GetFirstName(speciesProto, gender)), ("last", GetLastName(speciesProto)));
|
||||
case SpeciesNaming.FirstDashFirst:
|
||||
return $"{GetFirstName(speciesProto, gender)}-{GetFirstName(speciesProto, gender)}";
|
||||
return Loc.GetString("namepreset-firstdashfirst",
|
||||
("first1", GetFirstName(speciesProto, gender)), ("first2", GetFirstName(speciesProto, gender)));
|
||||
case SpeciesNaming.FirstLast:
|
||||
default:
|
||||
return $"{GetFirstName(speciesProto, gender)} {GetLastName(speciesProto)}";
|
||||
return Loc.GetString("namepreset-firstlast",
|
||||
("first", GetFirstName(speciesProto, gender)), ("last", GetLastName(speciesProto)));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user