Skip to content

Commit ada9b37

Browse files
authored
Merge pull request #158 from battlecode/serena/add-us-quals-client
add us quals maps to client and bump version to 3.0.10
2 parents f4f4a4b + 282542a commit ada9b37

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-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.9", //TODO: Change this on each release!
157+
gameVersion: "3.0.10", //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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,21 @@ export const SERVER_MAPS: Map<string, MapType> = new Map<string, MapType>([
228228
["ThirtyFive", MapType.INTL_QUALIFYING],
229229
["TimesUp", MapType.INTL_QUALIFYING],
230230
["TreasureMap", MapType.INTL_QUALIFYING],
231+
["AbsoluteW", MapType.US_QUALIFYING],
232+
["Buggy", MapType.US_QUALIFYING],
233+
["Cave", MapType.US_QUALIFYING],
234+
["Cee", MapType.US_QUALIFYING],
235+
["Heart", MapType.US_QUALIFYING],
236+
["HotAirBalloon", MapType.US_QUALIFYING],
237+
["IslandHoppingTwo", MapType.US_QUALIFYING],
238+
["LightWork", MapType.US_QUALIFYING],
239+
["MassiveL", MapType.US_QUALIFYING],
240+
["Potions", MapType.US_QUALIFYING],
241+
["Rainbow", MapType.US_QUALIFYING],
242+
["Resign", MapType.US_QUALIFYING],
243+
["Sneaky", MapType.US_QUALIFYING],
244+
["Target", MapType.US_QUALIFYING],
245+
["Tightrope", MapType.US_QUALIFYING]
231246
])
232247

233248
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.9";
13+
public static final String SPEC_VERSION = "3.0.10";
1414

1515
// *********************************
1616
// ****** MAP CONSTANTS ************

specs/specs.md.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
# Formal specification
1919

20-
*This is the formal specification of the Battlecode 2023 game.* Current version: *3.0.9*
20+
*This is the formal specification of the Battlecode 2023 game.* Current version: *3.0.10*
2121

2222
**Welcome to Battlecode 2023: Tempest.**
2323

@@ -291,8 +291,11 @@
291291

292292
# Appendix: Changelog
293293

294-
- Version 3.0.5 (January 31, 2023)
295-
- Released US Qualifier maps to public
294+
- Version 3.0.10 (January 31, 2023)
295+
- Released US Qualifier maps to public in client
296+
297+
- Version 3.0.9 (January 31, 2023)
298+
- Released US Qualifier maps to public in engine
296299

297300
- Version 3.0.5 (January 29, 2023)
298301
- Fix Repetition and Sakura maps

0 commit comments

Comments
 (0)