Skip to content

Commit

Permalink
Merge pull request #168 from Emik03/equality-fix
Browse files Browse the repository at this point in the history
Fix Qua equality
  • Loading branch information
Swan committed Jun 24, 2024
2 parents c22a6f8 + 626e580 commit 5edb8cb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Quaver.API/Maps/Qua.cs
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ public bool EqualByValue(Qua other)
// ReSharper disable once CompareOfFloatsByEqualityOperator
&& InitialScrollVelocity == other.InitialScrollVelocity
&& BPMDoesNotAffectScrollVelocity == other.BPMDoesNotAffectScrollVelocity
&& LegacyLNRendering == other.LegacyLNRendering
&& HasScratchKey == other.HasScratchKey
&& HitObjects.SequenceEqual(other.HitObjects, HitObjectInfo.ByValueComparer)
&& CustomAudioSamples.SequenceEqual(other.CustomAudioSamples, CustomAudioSampleInfo.ByValueComparer)
Expand Down

0 comments on commit 5edb8cb

Please sign in to comment.