Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Goodlyay committed Sep 1, 2024
1 parent bd6ad3a commit af72d74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MCGalaxy/Commands/Moderation/CmdLocation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public static string GetCountryName(string twoLetterCode) {
if (!CodesToNames.ContainsKey(twoLetterCode)) { return null; }
return CodesToNames[twoLetterCode];
}
public static Dictionary<string, string> CodesToNames = new Dictionary<string, string>() {
static Dictionary<string, string> CodesToNames = new Dictionary<string, string>() {
{ "AF", "Afghanistan" },
{ "AL", "Albania" },
{ "DZ", "Algeria" },
Expand Down Expand Up @@ -226,7 +226,7 @@ public static string GetCountryName(string twoLetterCode) {
{ "YT", "Mayotte" },
{ "MX", "Mexico" },
{ "FM", "Federated States of Micronesia" },
{ "MD", "The Republic of Moldova)" },
{ "MD", "The Republic of Moldova" },
{ "MC", "Monaco" },
{ "MN", "Mongolia" },
{ "ME", "Montenegro" },
Expand Down

0 comments on commit af72d74

Please sign in to comment.