Fixed bug with not counting keycards as lands in the land count causing various issues. Fixed final keyword issue causing build warnings.

This commit is contained in:
austinio7116
2018-03-02 19:49:42 +00:00
committed by maustin
parent cb5791276a
commit edc921bf98
3 changed files with 16 additions and 3 deletions

View File

@@ -161,10 +161,10 @@ public class SimulateMatch {
private static void simulateSingleMatch(Match mc, int iGame, boolean outputGamelog) {
StopWatch sw = new StopWatch();
final StopWatch sw = new StopWatch();
sw.start();
Game g1 = mc.createGame();
final Game g1 = mc.createGame();
// will run match in the same thread
long startTime = System.currentTimeMillis();