Change early return in CheckTrackerLoadGame to check specifically for Boss Rush instead of Not Rando. (#5634)
Some checks failed
generate-builds / generate-soh-otr (push) Has been cancelled
generate-builds / build-macos (push) Has been cancelled
generate-builds / build-linux (push) Has been cancelled
generate-builds / build-windows (push) Has been cancelled

This commit is contained in:
Malkierian 2025-06-29 19:12:04 -07:00 committed by GitHub
parent a9b857469e
commit 32683e2a74
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -495,7 +495,7 @@ void SetShopSeen(uint32_t sceneNum, bool prices) {
} }
void CheckTrackerLoadGame(int32_t fileNum) { void CheckTrackerLoadGame(int32_t fileNum) {
if (!IS_RANDO) { if (IS_BOSS_RUSH) {
return; return;
} }
LoadSettings(); LoadSettings();