Skip to content

Commit 609542d

Browse files
authored
Merge pull request #155 from battlecode/serena/add-intl-maps
Add international maps
2 parents bc24032 + a181b2b commit 609542d

File tree

19 files changed

+21
-5
lines changed

19 files changed

+21
-5
lines changed

client/visualizer/src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ export enum Mode {
154154
export function defaults(supplied?: any): Config {
155155
let year = "2023"
156156
let conf: Config = {
157-
gameVersion: "3.0.2", //TODO: Change this on each release!
157+
gameVersion: "3.0.4", //TODO: Change this on each release!
158158
year: year,
159159
map_extension: 'map'+year.substring(2),
160160
game_extension: 'bc'+year.substring(2),

client/visualizer/src/constants.ts

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,21 @@ export const SERVER_MAPS: Map<string, MapType> = new Map<string, MapType>([
213213
["SweetDreams", MapType.SPRINT_2],
214214
["TicTacToe", MapType.SPRINT_2],
215215
["USA", MapType.SPRINT_2],
216-
217-
216+
["Barcode", MapType.INTL_QUALIFYING],
217+
["Contraction", MapType.INTL_QUALIFYING],
218+
["Flower", MapType.INTL_QUALIFYING],
219+
["Grapes", MapType.INTL_QUALIFYING],
220+
["IslandHopping", MapType.INTL_QUALIFYING],
221+
["Marsh", MapType.INTL_QUALIFYING],
222+
["RaceToTheTop", MapType.INTL_QUALIFYING],
223+
["Repetition", MapType.INTL_QUALIFYING],
224+
["River", MapType.INTL_QUALIFYING],
225+
["RockWall", MapType.INTL_QUALIFYING],
226+
["Sakura", MapType.INTL_QUALIFYING],
227+
["SoundWave", MapType.INTL_QUALIFYING],
228+
["ThirtyFive", MapType.INTL_QUALIFYING],
229+
["TimesUp", MapType.INTL_QUALIFYING],
230+
["TreasureMap", MapType.INTL_QUALIFYING],
218231
])
219232

220233
export function bodyTypeToString(bodyType: schema.BodyType) {

engine/src/main/battlecode/common/GameConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class GameConstants {
1010
/**
1111
* The current spec version the server compiles with.
1212
*/
13-
public static final String SPEC_VERSION = "3.0.2";
13+
public static final String SPEC_VERSION = "3.0.4";
1414

1515
// *********************************
1616
// ****** MAP CONSTANTS ************
5.71 KB
Binary file not shown.
49.5 KB
Binary file not shown.
17 KB
Binary file not shown.
12.5 KB
Binary file not shown.
24.9 KB
Binary file not shown.
41.2 KB
Binary file not shown.
8.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)