mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user