added killhouse

This commit is contained in:
Michael Simard
2021-04-09 17:20:51 -05:00
parent 64f4f89f2d
commit 636512e067

View File

@@ -46,7 +46,8 @@ class MapData {
32: Map(id: 32, name: "Piccadilly", imageName: "mw_piccadilly"),
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")
35: Map(id: 35, name: "Apocalypse", imageName: "bocw_apocalypse"),
36: Map(id: 36, name: "Killhouse", imageName: "mw_killhouse")
]
@@ -60,7 +61,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].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].compactMap {
return allMaps[$0];
}.sorted { (m1, m2) -> Bool in
return m1.name < m2.name