From 18eccff16c3cd97ee02685d753ffefbaa7bbbb4c Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 28 Sep 2023 13:48:57 -0400 Subject: Added early color hallways support --- src/tracker_state.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/tracker_state.cpp') diff --git a/src/tracker_state.cpp b/src/tracker_state.cpp index 0976461..002f447 100644 --- a/src/tracker_state.cpp +++ b/src/tracker_state.cpp @@ -148,6 +148,11 @@ void RecalculateReachability() { std::list flood_boundary; flood_boundary.push_back({.destination_room = GD_GetRoomByName("Menu")}); + if (AP_HasEarlyColorHallways()) { + flood_boundary.push_back( + {.destination_room = GD_GetRoomByName("Outside The Undeterred")}); + } + bool reachable_changed = true; while (reachable_changed) { reachable_changed = false; -- cgit 1.4.1