diff options
| author | Christopher Leggett <chris@leggett.dev> | 2025-04-04 10:15:04 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-04 10:15:04 -0400 |
| commit | 38574bbb9e554943489a72b4f33faf65739b3b4e (patch) | |
| tree | f075e67cd4403335f0e8835f99d1390b9e02e705 | |
| parent | e2bb2edb8ab0ea9d2077e4b2236bf605c98de324 (diff) | |
Fix excluded locations on subsequent seed generations (#5302)
| -rw-r--r-- | soh/soh/SaveManager.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/soh/soh/SaveManager.cpp b/soh/soh/SaveManager.cpp index 36640c728..97ab6a52a 100644 --- a/soh/soh/SaveManager.cpp +++ b/soh/soh/SaveManager.cpp @@ -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); } |
