summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Leggett <chris@leggett.dev>2025-04-04 10:15:04 -0400
committerGitHub <noreply@github.com>2025-04-04 10:15:04 -0400
commit38574bbb9e554943489a72b4f33faf65739b3b4e (patch)
treef075e67cd4403335f0e8835f99d1390b9e02e705
parente2bb2edb8ab0ea9d2077e4b2236bf605c98de324 (diff)
Fix excluded locations on subsequent seed generations (#5302)
-rw-r--r--soh/soh/SaveManager.cpp1
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);
}