diff --git a/Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs b/Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs index 28e4db1174..f2949fce7a 100644 --- a/Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs +++ b/Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs @@ -45,7 +45,7 @@ private static HumanoidCharacterProfile CharlieCharlieson() Species = "Human", Customspeciename = "", Age = 21, - Voice = "Eugene", + Voice = "Eugene", // WD EDIT Appearance = new( "Afro", Color.Aqua, diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index 9bb77e1717..390e810740 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -352,7 +352,7 @@ public bool MemberwiseEquals(ICharacterProfile maybeOther) return maybeOther is HumanoidCharacterProfile other && Name == other.Name && Age == other.Age - && Voice == other.Voice + && Voice == other.Voice // WD EDIT && Sex == other.Sex && Gender == other.Gender && Species == other.Species