From 072838613ad1430f667447d05ea84cd9ec81d963 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20Dub=C3=A9?= <159546+serprex@users.noreply.github.com> Date: Fri, 17 Apr 2026 03:53:24 +0000 Subject: [PATCH] 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 --- soh/soh/Enhancements/randomizer/location.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soh/soh/Enhancements/randomizer/location.cpp b/soh/soh/Enhancements/randomizer/location.cpp index 6de708c013..cb2d6dbe5b 100644 --- a/soh/soh/Enhancements/randomizer/location.cpp +++ b/soh/soh/Enhancements/randomizer/location.cpp @@ -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 {