From 80e6e899a828aefcd166a2e09dc7bb3730dd81f3 Mon Sep 17 00:00:00 2001 From: Pepper0ni <93387759+Pepper0ni@users.noreply.github.com> Date: Sat, 6 Jan 2024 16:08:06 +0000 Subject: [PATCH] Fix other hints not getting reset (#3811) --- soh/soh/Enhancements/randomizer/context.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/soh/soh/Enhancements/randomizer/context.cpp b/soh/soh/Enhancements/randomizer/context.cpp index 834692190..82a001024 100644 --- a/soh/soh/Enhancements/randomizer/context.cpp +++ b/soh/soh/Enhancements/randomizer/context.cpp @@ -249,7 +249,9 @@ void Context::LocationReset() { GetItemLocation(il)->RemoveFromPool(); } - GetItemLocation(RC_GANONDORF_HINT)->RemoveFromPool(); + for (const RandomizerCheck il : StaticData::otherHintLocations) { + GetItemLocation(il)->RemoveFromPool(); + } } void Context::HintReset() {