Changes lobby fluff text to be better worded. (#2855)

Co-authored-by: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com>
Co-authored-by: AJCM-git <60196617+AJCM-git@users.noreply.github.com>
This commit is contained in:
Swept
2021-01-11 09:12:05 +00:00
committed by GitHub
parent 3baea68569
commit 62fa453a20

View File

@@ -228,7 +228,7 @@ namespace Content.Shared.Preferences
string name; string name;
if (string.IsNullOrEmpty(profile.Name)) if (string.IsNullOrEmpty(profile.Name))
{ {
name = "John Doe"; name = "Urist McHands";
} }
else if (profile.Name.Length > MaxNameLength) else if (profile.Name.Length > MaxNameLength)
{ {
@@ -287,7 +287,7 @@ namespace Content.Shared.Preferences
} }
public string Summary => public string Summary =>
Loc.GetString("{0}, {1} years old human. {2:Their} pronouns are {2:they}/{2:them}.", Name, Age, this); Loc.GetString(" This is {0}. {2:They} {2:are} {1} years old.", Name, Age, this);
public bool MemberwiseEquals(ICharacterProfile maybeOther) public bool MemberwiseEquals(ICharacterProfile maybeOther)
{ {