Skip to content

Commit

Permalink
the scooping room
Browse files Browse the repository at this point in the history
  • Loading branch information
metalgearsloth committed Apr 7, 2024
1 parent d0b46da commit 22d9524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Shared/Preferences/HumanoidCharacterProfile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ public bool MemberwiseEquals(ICharacterProfile maybeOther)
if (!_jobPriorities.SequenceEqual(other._jobPriorities)) return false;
if (!_antagPreferences.SequenceEqual(other._antagPreferences)) return false;
if (!_traitPreferences.SequenceEqual(other._traitPreferences)) return false;
if (!Loadouts.Equals(other.Loadouts)) return false;
if (!Loadouts.SequenceEqual(other.Loadouts)) return false;
return Appearance.MemberwiseEquals(other.Appearance);
}

Expand Down

0 comments on commit 22d9524

Please sign in to comment.