Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change enabled quests in New Zealand #5277

Merged
merged 2 commits into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@ class AddBusStopRef : OsmFilterQuestType<BusStopRefAnswer>() {
"CA",
"IE",
"JE",
"AU", // see https://github.com/streetcomplete/StreetComplete/issues/4487
"TR", // see https://github.com/streetcomplete/StreetComplete/issues/4489
"AU", // https://github.com/streetcomplete/StreetComplete/issues/4487
"TR", // https://github.com/streetcomplete/StreetComplete/issues/4489
"US",
"IL", // see https://github.com/streetcomplete/StreetComplete/issues/5119
"IL", // https://github.com/streetcomplete/StreetComplete/issues/5119
"CO", // https://github.com/streetcomplete/StreetComplete/issues/5124
"NZ", // https://wiki.openstreetmap.org/w/index.php?title=Talk:StreetComplete/Quests&oldid=2599288#Quests_in_New_Zealand
)
override val changesetComment = "Determine bus/tram stop refs"
override val wikiLink = "Tag:public_transport=platform"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@ class AddPostboxRoyalCypher : OsmFilterQuestType<PostboxRoyalCypher>() {
override val isDeleteElementEnabled = true
override val achievements = listOf(POSTMAN)
override val enabledInCountries = NoCountriesExcept(
// United Kingdom and some former nations of the British Empire, members of the Commonwealth of Nations and British overseas territories etc
"GB", "GI", "CY", "HK", "MT", "NZ", "LK",
// United Kingdom and some former nations of the British Empire, members of the Commonwealth of Nations and British overseas territories etc.
"GB", "GI", "CY", "HK", "MT", "LK",
// territories with agency postal services provided by the British Post Office
"KW", "BH", "MA"
// Not New Zealand: https://wiki.openstreetmap.org/w/index.php?title=Talk:StreetComplete/Quests&oldid=2599288#Quests_in_New_Zealand
)

override fun getTitle(tags: Map<String, String>) = R.string.quest_postboxRoyalCypher_title
Expand Down