mirror of
https://github.com/HarbourMasters/Shipwright
synced 2026-05-22 22:44:40 -04:00
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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user