Skip to content

Commit 4b945a8

Browse files
committed
Merge branch 'engine-fixes'
2 parents 9ad5dd1 + 87bbf75 commit 4b945a8

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

engine/src/main/battlecode/world/InternalRobot.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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));

specs/specs.md.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,10 @@
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

0 commit comments

Comments
 (0)