Woops, the study_areas directory was being picked up as a city.

And clarify the Seattle-only focus on the front page.
This commit is contained in:
Dustin Carlino 2021-02-02 19:33:17 -08:00
parent a14133368e
commit 3f9a895896
2 changed files with 6 additions and 5 deletions

View File

@ -1,9 +1,10 @@
# A/B Street
Ever been stuck in traffic on a bus, wondering why is there legal street parking
instead of a dedicated bus lane? A/B Street is a game exploring how small
changes to a city affect the movement of drivers, cyclists, transit users, and
pedestrians.
Ever been stuck in traffic on a bus, wondering why is there legal street
parking instead of a dedicated bus lane? A/B Street is a game exploring how
small changes to a city affect the movement of drivers, cyclists, transit
users, and pedestrians. It works anywhere in the world, thanks to
[OpenStreetMap](https://www.openstreetmap.org/about).
- Play on
[Windows](https://github.com/a-b-street/abstreet/releases/download/v0.2.29/abstreet_windows_v0_2_29.zip),

View File

@ -113,7 +113,7 @@ impl MapName {
pub fn list_all_cities() -> Vec<String> {
let mut cities = Vec::new();
for city in list_all_objects(path("system")) {
if city == "assets" || city == "proposals" {
if city == "assets" || city == "proposals" || city == "study_areas" {
continue;
}
cities.push(city);