diff --git a/app/src/androidMain/kotlin/de/westnordost/streetcomplete/quests/opening_hours/AddOpeningHours.kt b/app/src/androidMain/kotlin/de/westnordost/streetcomplete/quests/opening_hours/AddOpeningHours.kt index ca20797924c..a91dced4e70 100644 --- a/app/src/androidMain/kotlin/de/westnordost/streetcomplete/quests/opening_hours/AddOpeningHours.kt +++ b/app/src/androidMain/kotlin/de/westnordost/streetcomplete/quests/opening_hours/AddOpeningHours.kt @@ -131,7 +131,7 @@ mapOf( or amenity = recycling and recycling_type = centre or amenity = toilets and (fee = yes or toilets:disposal = flush) or amenity = shower and (fee = yes or indoor = yes or location = indoor) - or tourism = information and information = office + or tourism = information and information ~ office|visitor_centre or tower:type = observation and fee = yes or leisure = garden and fee = yes or leisure = park and fee = yes diff --git a/app/src/androidMain/kotlin/de/westnordost/streetcomplete/quests/place_name/AddPlaceName.kt b/app/src/androidMain/kotlin/de/westnordost/streetcomplete/quests/place_name/AddPlaceName.kt index b1fc7b9ee47..f27367e4b82 100644 --- a/app/src/androidMain/kotlin/de/westnordost/streetcomplete/quests/place_name/AddPlaceName.kt +++ b/app/src/androidMain/kotlin/de/westnordost/streetcomplete/quests/place_name/AddPlaceName.kt @@ -25,8 +25,8 @@ class AddPlaceName( or craft or amenity = recycling and recycling_type = centre or amenity = shelter and shelter_type = basic_hut - or tourism = information and information = office - or natural = cave_entrance and fee=yes + or tourism = information and information ~ office|visitor_centre + or natural = cave_entrance and fee = yes or """ + // The common list is shared by the opening hours quest and the wheelchair quest. diff --git a/app/src/androidMain/kotlin/de/westnordost/streetcomplete/quests/wheelchair_access/AddWheelchairAccessBusiness.kt b/app/src/androidMain/kotlin/de/westnordost/streetcomplete/quests/wheelchair_access/AddWheelchairAccessBusiness.kt index 732aa16f341..5cf50076e50 100644 --- a/app/src/androidMain/kotlin/de/westnordost/streetcomplete/quests/wheelchair_access/AddWheelchairAccessBusiness.kt +++ b/app/src/androidMain/kotlin/de/westnordost/streetcomplete/quests/wheelchair_access/AddWheelchairAccessBusiness.kt @@ -24,7 +24,7 @@ class AddWheelchairAccessBusiness : OsmFilterQuestType(), Andr or amenity = parking and parking ~ multi-storey|underground|rooftop or amenity = recycling and recycling_type = centre or amenity = social_facility and social_facility ~ food_bank|clothing_bank|soup_kitchen|dairy_kitchen - or tourism = information and information = office + or tourism = information and information ~ office|visitor_centre or natural = cave_entrance and fee=yes or """ +