From 62fa453a2059421d787842c5894e9869ea1e05a7 Mon Sep 17 00:00:00 2001 From: Swept Date: Mon, 11 Jan 2021 09:12:05 +0000 Subject: [PATCH] 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> --- Content.Shared/Preferences/HumanoidCharacterProfile.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index 6609591887..2c7ae05637 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -228,7 +228,7 @@ namespace Content.Shared.Preferences string name; if (string.IsNullOrEmpty(profile.Name)) { - name = "John Doe"; + name = "Urist McHands"; } else if (profile.Name.Length > MaxNameLength) { @@ -287,7 +287,7 @@ namespace Content.Shared.Preferences } 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) {