external -> offbrand

This commit is contained in:
Gigi
2023-04-28 11:45:45 +02:00
parent 36e042afda
commit 978b26a2ce
2 changed files with 2 additions and 2 deletions

View File

@@ -1858,7 +1858,7 @@
"longitude": -97,
"name": "Citadel Dispatch",
"link_to_public_community_group": "https://citadeldispatch.com/",
"external": true
"offbrand": true
},
{
"country": "United States Minor Outlying Islands",

View File

@@ -52,7 +52,7 @@ title: Twentyone.World
function getColor(iso) {
let country = countries.find(c => c.alpha3 == iso);
if (country && country.link_to_public_community_group) {
return country.external ? cWhite : cOrange;
return country.offbrand ? cWhite : cOrange;
}
return cGray;
}