Fix kak bazaar items having articles (#6522)

IsShop didn't include SCENE_TEST01, but that's used as placeholder for kak bazaar vs market bazaar
This commit is contained in:
Philip Dubé
2026-04-17 03:53:24 +00:00
committed by GitHub
parent 9c321862ca
commit 072838613a
+1 -1
View File
@@ -64,7 +64,7 @@ bool Rando::Location::IsOverworld() const {
}
bool Rando::Location::IsShop() const {
return scene >= SCENE_BAZAAR && scene <= SCENE_BOMBCHU_SHOP;
return (scene >= SCENE_BAZAAR && scene <= SCENE_BOMBCHU_SHOP) || scene == SCENE_TEST01;
}
bool Rando::Location::IsVanillaCompletion() const {