From 3b49bdc6c73946b4132fe7bc119208e559995f67 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Fri, 17 Nov 2023 12:39:24 -0500 Subject: Fixed hunt-only areas not showing up for hunts --- src/game_data.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/game_data.cpp') diff --git a/src/game_data.cpp b/src/game_data.cpp index 2022097..31e23ec 100644 --- a/src/game_data.cpp +++ b/src/game_data.cpp @@ -550,6 +550,7 @@ struct GameData { for (MapArea &map_area : map_areas_) { for (const Location &location : map_area.locations) { map_area.classification |= location.classification; + map_area.hunt |= location.hunt; } } -- cgit 1.4.1