Skip to content

Commit

Permalink
lol
Browse files Browse the repository at this point in the history
  • Loading branch information
123kevinlee committed Jan 28, 2021
1 parent e9bf500 commit ae8727e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/atomFinal/EnlightenmentCenter.java
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,10 @@ public static void calculateBid(RobotController rc) throws GameActionException {
}
}
} else {
if (rc.canBid(1)) {
if (rc.canBid(lastInfluenceGain)) {
rc.bid(lastInfluenceGain);
baseVote = lastInfluenceGain;
} else if (rc.canBid(1)) {
rc.bid(1);
}
}
Expand Down

0 comments on commit ae8727e

Please sign in to comment.