From d8ad9e23bdd9391996b16a38bc40ddec8f9710aa Mon Sep 17 00:00:00 2001 From: VariableVince <24507472+VariableVince@users.noreply.github.com> Date: Wed, 28 May 2025 04:13:38 +0200 Subject: [PATCH] Flag fixes for Europe map and for Brittany in flag menu and Gateway To the Atlantic map (#910) ## Description: As reported here https://discord.com/channels/1284581928254701718/1377035663404433490 Flag names in Europe.json didn't correspond with those in Countries.json for: England, Scotland, Wales. So the Nations' flags weren't displayed in-game. Changed them in Europe.json. The flag of Brittanny was looked up as 'britanny' by both the flag menu and GatewayToTheAtlantic.json. Changed its name in Countries.json to correspond with this so the flag shows up in flag menu and in-game. ## Please complete the following: - [ ] I have added screenshots for all UI updates - [x] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced - [x] I understand that submitting code with bugs that could have been caught through manual testing blocks releases and new features for all contributors ## Please put your Discord username so you can be contacted if a bug or regression is found: tryout33 --- resources/maps/Europe.json | 6 +++--- src/client/data/countries.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/maps/Europe.json b/resources/maps/Europe.json index d1e60870b..2fdc5694f 100644 --- a/resources/maps/Europe.json +++ b/resources/maps/Europe.json @@ -13,7 +13,7 @@ "coordinates": [451, 785], "name": "England", "strength": 2, - "flag": "england" + "flag": "gb-eng" }, { "coordinates": [285, 1253], @@ -235,13 +235,13 @@ "coordinates": [278, 742], "name": "Wales", "strength": 2, - "flag": "wales" + "flag": "gb-wls" }, { "coordinates": [296, 601], "name": "Scotland", "strength": 1, - "flag": "scotland" + "flag": "gb-sct" }, { "coordinates": [2239, 3215], diff --git a/src/client/data/countries.json b/src/client/data/countries.json index 149570da0..6c5cb64f9 100644 --- a/src/client/data/countries.json +++ b/src/client/data/countries.json @@ -300,7 +300,7 @@ "name": "British Indian Ocean Territory" }, { - "code": "Brittany", + "code": "brittany", "continent": "Europe", "name": "Brittany" },