summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordjevangelia <263709373+djevangelia@users.noreply.github.com>2026-07-19 22:51:04 +0200
committerGitHub <noreply@github.com>2026-07-19 20:51:04 +0000
commit9d42aedc9ce09448c2d9ad6b9068d365324c6424 (patch)
tree4e6cabd7a3a418a590a1211ec276f018d3d8bff8
parentd3dc95d8f5af8aaea7319247c6e6f25dc08bdab3 (diff)
Bugfix, make entrance tracker track blue warps (#6888)
-rw-r--r--soh/soh/Enhancements/randomizer/randomizer_entrance_tracker.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/soh/soh/Enhancements/randomizer/randomizer_entrance_tracker.cpp b/soh/soh/Enhancements/randomizer/randomizer_entrance_tracker.cpp
index 5f118292c..9943c6042 100644
--- a/soh/soh/Enhancements/randomizer/randomizer_entrance_tracker.cpp
+++ b/soh/soh/Enhancements/randomizer/randomizer_entrance_tracker.cpp
@@ -941,8 +941,10 @@ void EntranceTrackerWindow::DrawElement() {
continue;
}
- // RANDOTODO: Only show blue warps if bluewarp shuffle is on
- if (original->metaTag.ends_with("bw") || override->metaTag.ends_with("bw")) {
+ // Only show blue warps if bluewarp shuffle is on
+ if ((original->metaTag.ends_with("bw") || override->metaTag.ends_with("bw")) &&
+ OTRGlobals::Instance->gRandomizer->GetRandoSettingValue(RSK_DECOUPLED_ENTRANCES) ==
+ RO_GENERIC_OFF) {
continue;
}