From 5e0d44d911c3e639737f08eca17f687744876e45 Mon Sep 17 00:00:00 2001 From: josshmot Date: Sat, 5 Apr 2025 13:07:30 +1000 Subject: [PATCH] Fixed credits music fade in still sometimes occuring --- NewHorizons/Components/NHGameOverManager.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NewHorizons/Components/NHGameOverManager.cs b/NewHorizons/Components/NHGameOverManager.cs index 6dd351ad..2dc57d36 100644 --- a/NewHorizons/Components/NHGameOverManager.cs +++ b/NewHorizons/Components/NHGameOverManager.cs @@ -180,6 +180,10 @@ namespace NewHorizons.Components } } + // Override fade in + musicSource.Stop(); + musicSource.Play(); + // Patch scroll duration var creditsScroll = Locator.FindObjectOfType(); creditsScroll._scrollDuration = gameOver.length;