From 6d77b0b1d1e38fe70c9d0c50018075055bdc55d5 Mon Sep 17 00:00:00 2001 From: josshmot Date: Tue, 8 Apr 2025 16:50:31 +1000 Subject: [PATCH] Fixed incorrect log level in NHGameOverManager.LoadCustomCreditsScene() --- NewHorizons/Components/NHGameOverManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NewHorizons/Components/NHGameOverManager.cs b/NewHorizons/Components/NHGameOverManager.cs index 2dc57d36..3da1b8cf 100644 --- a/NewHorizons/Components/NHGameOverManager.cs +++ b/NewHorizons/Components/NHGameOverManager.cs @@ -162,7 +162,7 @@ namespace NewHorizons.Components else { // We can't load in custom music if an IModBehaviour cannot be provided. This should only happen if called via TryHijackDeathSequence(). - NHLogger.LogWarning("Credits called using TryHijackDeathSequence(), custom credits audio cannot not be loaded."); + NHLogger.Log("Credits called using TryHijackDeathSequence(), custom credits audio cannot not be loaded."); return; } musicSource.loop = gameOver.audioLooping;