Fix getting heart containers on pocket and skipped impas song (#5518)

* fix getting heart containers on pocket and skipped impas song

* curse you clang! CURSE YOU!
This commit is contained in:
Pepper0ni 2025-05-21 23:01:54 +01:00 committed by GitHub
parent 01ce1eeac8
commit 2511275b8b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -232,6 +232,8 @@ extern "C" void Randomizer_InitSaveFile() {
// Reset triforce pieces collected.
gSaveContext.ship.quest.data.randomizer.triforcePiecesCollected = 0;
SetStartingItems();
// Set Cutscene flags and texts to skip them.
Flags_SetEventChkInf(EVENTCHKINF_FIRST_SPOKE_TO_MIDO);
Flags_SetInfTable(INFTABLE_SPOKE_TO_KAEPORA_IN_LAKE_HYLIA);
@ -430,6 +432,4 @@ extern "C" void Randomizer_InitSaveFile() {
gSaveContext.itemGetInf[3] |= 0x800; // Bunny Hood related
gSaveContext.itemGetInf[3] |= 0x8000; // Obtained Mask of Truth
}
SetStartingItems();
}