Skip to content

Commit

Permalink
Updated specs and version nums
Browse files Browse the repository at this point in the history
  • Loading branch information
pv711 committed Jan 20, 2023
1 parent ac2f223 commit 5d142a8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/visualizer/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export enum Mode {
export function defaults(supplied?: any): Config {
let year = "2023"
let conf: Config = {
gameVersion: "2.0.2", //TODO: Change this on each release!
gameVersion: "2.0.3", //TODO: Change this on each release!
year: year,
map_extension: 'map'+year.substring(2),
game_extension: 'bc'+year.substring(2),
Expand Down
7 changes: 6 additions & 1 deletion client/visualizer/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,12 @@ export const SERVER_MAPS: Map<string, MapType> = new Map<string, MapType>([
["Rectangle", MapType.SPRINT_1],
["Scatter", MapType.SPRINT_1],
["Sun", MapType.SPRINT_1],
["Tacocat", MapType.SPRINT_1]
["Tacocat", MapType.SPRINT_1],
["Turtle", MapType.DEFAULT],
["Dreamy", MapType.DEFAULT],
["Forest", MapType.DEFAULT],
["PairedProgramming", MapType.DEFAULT],
["Rewind", MapType.DEFAULT]
])

export function bodyTypeToString(bodyType: schema.BodyType) {
Expand Down
2 changes: 1 addition & 1 deletion engine/src/main/battlecode/common/GameConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class GameConstants {
/**
* The current spec version the server compiles with.
*/
public static final String SPEC_VERSION = "2.0.2";
public static final String SPEC_VERSION = "2.0.3";

// *********************************
// ****** MAP CONSTANTS ************
Expand Down
7 changes: 6 additions & 1 deletion specs/specs.md.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

# Formal specification

*This is the formal specification of the Battlecode 2023 game.* Current version: *2.0.2*
*This is the formal specification of the Battlecode 2023 game.* Current version: *2.0.3*

**Welcome to Battlecode 2023: Tempest.**

Expand Down Expand Up @@ -291,6 +291,11 @@

# Appendix: Changelog

- Version 2.0.3 (January 20, 2023)
- Released additional maps with more clouds
- Client Fixes:
- Currents now display direction in map editor

- Version 2.0.2 (January 19, 2023)
- Spec Fixes:
- Anchor healing frequency fixed
Expand Down

0 comments on commit 5d142a8

Please sign in to comment.