This commit is contained in:
Michael Simard
2021-07-12 09:39:25 -05:00
parent 636512e067
commit 531d461c73

View File

@@ -47,7 +47,8 @@ class MapData {
33: Map(id: 33, name: "Grazna Raid", imageName: "mw_grazna"),
34: Map(id: 34, name: "Express", imageName: "bocw_express"),
35: Map(id: 35, name: "Apocalypse", imageName: "bocw_apocalypse"),
36: Map(id: 36, name: "Killhouse", imageName: "mw_killhouse")
36: Map(id: 36, name: "Killhouse", imageName: "mw_killhouse"),
37: Map(id: 37, name: "Al-Raab Airbase", imageName: "mw_airbase")
]
@@ -61,7 +62,7 @@ class MapData {
}
}
static let mwMaps = {
return [9,10,11,12,13,14,15,28,16,17,18,19,20,21,22,23,24,25,26,27,32,33,36].compactMap {
return [9,10,11,12,13,14,15,28,16,17,18,19,20,21,22,23,24,25,26,27,32,33,36,37].compactMap {
return allMaps[$0];
}.sorted { (m1, m2) -> Bool in
return m1.name < m2.name