Bugfix, make entrance tracker track blue warps (#6888)

This commit is contained in:
djevangelia
2026-07-19 22:51:04 +02:00
committed by GitHub
parent d3dc95d8f5
commit 9d42aedc9c
@@ -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;
}