Skip to content

Commit

Permalink
WD EDIT
Browse files Browse the repository at this point in the history
  • Loading branch information
Spatison committed Nov 5, 2024
1 parent bed0bbb commit 7112895
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ private static HumanoidCharacterProfile CharlieCharlieson()
Species = "Human",
Customspeciename = "",
Age = 21,
Voice = "Eugene",
Voice = "Eugene", // WD EDIT
Appearance = new(
"Afro",
Color.Aqua,
Expand Down
2 changes: 1 addition & 1 deletion Content.Shared/Preferences/HumanoidCharacterProfile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7112895

Please sign in to comment.