Skip to content

Commit

Permalink
Merge pull request ExOK#74 from Calverin/fix-cutscene-hair
Browse files Browse the repository at this point in the history
Fix White Hair in Cutscenes
  • Loading branch information
NoelFB authored Feb 8, 2024
2 parents 2465969 + 2c17145 commit 28892e5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Source/Actors/Player.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1998,6 +1998,12 @@ private void StDeadUpdate()
private void StCutsceneEnter()
{
Model.Play("Idle");
// Fix white hair in cutscene bug
if (tDashResetFlash > 0)
{
tDashResetFlash = 0;
SetHairColor(CNormal);
}
}

private void StCutsceneUpdate()
Expand Down

0 comments on commit 28892e5

Please sign in to comment.