Skip to content

Commit e2c53bd

Browse files
committed
reduce attack time to 8 turns
1 parent c4d100b commit e2c53bd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,7 @@ else if (this.type == UnitType.CAT) {
12531253

12541254
case ATTACK:
12551255
this.catTurns += 1; // increment number of turns spent in attack mode
1256-
if (this.catTurns > 10){ // only allow attacking for 10 turns
1256+
if (this.catTurns > 8){ // only allow attacking for 8 turns
12571257
//return to exploring
12581258
this.catTurns = 0;
12591259
this.catState = CatStateType.EXPLORE;

0 commit comments

Comments
 (0)