mirror of
https://github.com/HarbourMasters/Shipwright
synced 2026-06-06 11:57:23 -04:00
Check Tracker - Fixes Bazaar showing under wrong area on tracker between adult/child
This commit is contained in:
@@ -744,6 +744,7 @@ void DrawLocations() {
|
||||
doAreaScroll =
|
||||
(currentArea != RCAREA_INVALID && sceneId != SCENE_KAKUSIANA && // Don't move for grottos
|
||||
sceneId != SCENE_YOUSEI_IZUMI_TATE && sceneId != SCENE_YOUSEI_IZUMI_YOKO && // Don't move for fairy fountains
|
||||
sceneId != SCENE_SHOP1 && // Don't move for Bazaar, as it moves between Kak and Market
|
||||
currentArea != lastArea && currentArea == rcArea);
|
||||
break;
|
||||
}
|
||||
@@ -827,6 +828,7 @@ void DrawLocations() {
|
||||
doAreaScroll =
|
||||
(currentArea != RCAREA_INVALID && sceneId != SCENE_KAKUSIANA && // Don't move for kakusiana/grottos
|
||||
sceneId != SCENE_YOUSEI_IZUMI_TATE && sceneId != SCENE_YOUSEI_IZUMI_YOKO && // Don't move for fairy fountains
|
||||
sceneId != SCENE_SHOP1 && //Don't move for Bazaar, as it moves between Kak and Market
|
||||
currentArea != lastArea && currentArea == rcArea);
|
||||
break;
|
||||
}
|
||||
@@ -875,7 +877,10 @@ void DrawLocations() {
|
||||
ImGui::EndChild();
|
||||
ImGui::EndTable();
|
||||
|
||||
if (sceneId != SCENE_KAKUSIANA && sceneId != SCENE_YOUSEI_IZUMI_TATE && sceneId != SCENE_YOUSEI_IZUMI_YOKO)
|
||||
if (sceneId != SCENE_KAKUSIANA &&
|
||||
sceneId != SCENE_YOUSEI_IZUMI_TATE &&
|
||||
sceneId != SCENE_YOUSEI_IZUMI_YOKO &&
|
||||
sceneId != SCENE_SHOP1)
|
||||
lastArea = currentArea;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user