Fix excluded locations on subsequent seed generations (#5302)

This commit is contained in:
Christopher Leggett 2025-04-04 10:15:04 -04:00 committed by GitHub
parent e2bb2edb8a
commit 38574bbb9e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2908,6 +2908,7 @@ extern "C" void Save_LoadFile(void) {
OTRGlobals::Instance->gRandoContext = Rando::Context::CreateInstance();
OTRGlobals::Instance->gRandoContext->GetLogic()->SetSaveContext(&gSaveContext);
Rando::Settings::GetInstance()->AssignContext(OTRGlobals::Instance->gRandoContext);
OTRGlobals::Instance->gRandoContext->AddExcludedOptions();
SaveManager::Instance->LoadFile(gSaveContext.fileNum);
}