File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
engine/src/main/battlecode Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 11import { schema } from 'battlecode-schema'
22
3- export const GAME_VERSION = '3.0.0 '
4- export const SPEC_VERSION = '3.0.0 '
3+ export const GAME_VERSION = '3.0.1 '
4+ export const SPEC_VERSION = '3.0.1 '
55export const BATTLECODE_YEAR : number = 2024
66export const MAP_SIZE_RANGE = {
77 min : 30 ,
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ public class GameConstants {
99 /**
1010 * The current spec version the server compiles with.
1111 */
12- public static final String SPEC_VERSION = "3.0.0 " ;
12+ public static final String SPEC_VERSION = "3.0.1 " ;
1313
1414 // *********************************
1515 // ****** MAP CONSTANTS ************
Original file line number Diff line number Diff line change @@ -296,7 +296,7 @@ public void addActionCooldownTurns(int numActionCooldownToAdd) {
296296 public void addMovementCooldownTurns () {
297297 if (hasFlag () && this .gameWorld .getTeamInfo ().getGlobalUpgrades (team )[1 ]) {
298298 setMovementCooldownTurns (this .movementCooldownTurns + GameConstants .FLAG_MOVEMENT_COOLDOWN
299- - GlobalUpgrade .CAPTURING .movementDelayChange );
299+ + GlobalUpgrade .CAPTURING .movementDelayChange );
300300 } else {
301301 setMovementCooldownTurns (this .movementCooldownTurns
302302 + (hasFlag () ? GameConstants .FLAG_MOVEMENT_COOLDOWN : GameConstants .MOVEMENT_COOLDOWN ));
Original file line number Diff line number Diff line change 1616
1717# ** Formal specification**
1818
19- _ This is the formal specification of the Battlecode 2024 game._ Current version: * 3.0.0 *
19+ _ This is the formal specification of the Battlecode 2024 game._ Current version: * 3.0.1 *
2020
2121** Welcome to Battlecode 2024: Breadwars.**
2222
286286
287287# ** Appendix: Changelog**
288288
289+ - Version 3.0.1 (January 26, 2024)
290+ - Bug fixes
291+ - Fix issue with capturing upgrade movement cooldown
292+
289293- Version 3.0.0 (January 24, 2024)
290294 - Balance changes
291295 - Explosive trap cost 250 -> 200
You can’t perform that action at this time.
0 commit comments