From 9228f4b35f75eeed5d8a11842e85839982e03f61 Mon Sep 17 00:00:00 2001 From: aMannus Date: Mon, 20 Oct 2025 20:33:29 +0200 Subject: [PATCH] Fix starting age --- soh/soh/Enhancements/randomizer/context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soh/soh/Enhancements/randomizer/context.cpp b/soh/soh/Enhancements/randomizer/context.cpp index 598e05bbd..89172f5cd 100644 --- a/soh/soh/Enhancements/randomizer/context.cpp +++ b/soh/soh/Enhancements/randomizer/context.cpp @@ -488,7 +488,7 @@ void Context::ParseArchipelagoOptions() { mOptions[RSK_SLEEPING_WATERFALL].Set(slotData["sleeping_waterfall"]); mOptions[RSK_JABU_OPEN].Set(slotData["jabu_jabu"]); mOptions[RSK_STARTING_AGE].Set(slotData["starting_age"]); - mOptions[RSK_SELECTED_STARTING_AGE].Set(0); + mOptions[RSK_SELECTED_STARTING_AGE].Set(slotData["starting_age"]); mOptions[RSK_GERUDO_FORTRESS].Set(slotData["fortress_carpenters"]); mOptions[RSK_RAINBOW_BRIDGE].Set(slotData["rainbow_bridge"]); mOptions[RSK_RAINBOW_BRIDGE_STONE_COUNT].Set(slotData["rainbow_bridge_stones_required"]);