Skip to content

Commit

Permalink
Merge pull request #592 from LumpBloom7/fix-line-color-mismatch
Browse files Browse the repository at this point in the history
Fix HitObject line sometimes not matching Hitobject color
  • Loading branch information
LumpBloom7 authored Jun 14, 2024
2 parents 5336960 + cd26129 commit eee3d57
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void UpdateLine()

var hitObject = HitObjects.First();

Colour = hitObject.Break ? Color4.OrangeRed : hitObject.DefaultNoteColour;
Colour = hitObject.NoteColour;
Rotation = hitObject.Lane.GetRotationForLane() - 45;
}
else if (HitObjects.Count > 1)
Expand Down

0 comments on commit eee3d57

Please sign in to comment.