From 446c6c4802418842eabbe40141be91f6ab77719a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20Dub=C3=A9?= <159546+serprex@users.noreply.github.com> Date: Sat, 20 Jun 2026 02:05:49 +0000 Subject: [PATCH] SkipIntro: still start at 12:00 in non-rando game (#6762) --- soh/soh/Enhancements/TimeSavers/SkipCutscene/SkipIntro.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/soh/soh/Enhancements/TimeSavers/SkipCutscene/SkipIntro.cpp b/soh/soh/Enhancements/TimeSavers/SkipCutscene/SkipIntro.cpp index d9e08b3daf..09bdd727e6 100644 --- a/soh/soh/Enhancements/TimeSavers/SkipCutscene/SkipIntro.cpp +++ b/soh/soh/Enhancements/TimeSavers/SkipCutscene/SkipIntro.cpp @@ -41,6 +41,8 @@ void RegisterSkipIntro() { // Skip the intro cutscene for whatever the spawnEntrance is calculated to be. if (gSaveContext.entranceIndex == spawnEntrance) { gSaveContext.cutsceneIndex = 0; + if (!IS_RANDO) + gSaveContext.dayTime = 0x8000; *should = false; } }