Skip to content
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
@@ -1,5 +1,5 @@
{
"name": "thestraits",
"name": "Danish Straits",
"nations": [
{
"coordinates": [37, 227],
Expand Down
2 changes: 1 addition & 1 deletion map-generator/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ var maps = []struct {
{Name: "britanniaclassic"},
{Name: "caucasus"},
{Name: "conakry"},
{Name: "danishstraits"},
{Name: "deglaciatedantarctica"},
{Name: "didier"},
{Name: "didierfrance"},
Expand Down Expand Up @@ -91,7 +92,6 @@ var maps = []struct {
{Name: "svalmel"},
{Name: "taiwanstrait"},
{Name: "thebox"},
{Name: "thestraits"},
{Name: "tourney1"},
{Name: "tourney2"},
{Name: "tourney3"},
Expand Down
2 changes: 1 addition & 1 deletion resources/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@
"archipelagosea": "Archipelago Sea",
"bajacalifornia": "Baja California",
"taiwanstrait": "Taiwan Strait",
"thestraits": "The Straits",
"danishstraits": "Danish Straits",
"northwestpassage": "Northwest Passage"
},
"map_categories": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"num_land_tiles": 142124,
"width": 436
},
"name": "thestraits",
"name": "Danish Straits",
"nations": [
{
"coordinates": [37, 227],
Expand Down
4 changes: 2 additions & 2 deletions src/core/game/Game.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export enum GameMapType {
BajaCalifornia = "Baja California",
MiddleEast = "Middle East",
TaiwanStrait = "Taiwan Strait",
TheStraits = "The Straits",
DanishStraits = "Danish Straits",
Comment thread
coderabbitai[bot] marked this conversation as resolved.
NorthwestPassage = "Northwest Passage",
}

Expand Down Expand Up @@ -236,7 +236,7 @@ export const mapCategories: Record<string, GameMapType[]> = {
GameMapType.BajaCalifornia,
GameMapType.MiddleEast,
GameMapType.TaiwanStrait,
GameMapType.TheStraits,
GameMapType.DanishStraits,
GameMapType.NorthwestPassage,
],
fantasy: [
Expand Down
2 changes: 1 addition & 1 deletion src/server/MapPlaylist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ const FREQUENCY: Partial<Record<GameMapName, number>> = {
Britannia: 5,
Caucasus: 5,
Conakry: 3,
DanishStraits: 5,
DeglaciatedAntarctica: 4,
Didier: 1,
DidierFrance: 1,
Expand Down Expand Up @@ -96,7 +97,6 @@ const FREQUENCY: Partial<Record<GameMapName, number>> = {
Svalmel: 8,
TaiwanStrait: 5,
TheBox: 3,
TheStraits: 5,
TradersDream: 4,
TwoLakes: 6,
World: 20,
Expand Down
Loading