remove sw.stop as the stopwatch is not running by this point

This commit is contained in:
MisterVito
2020-10-07 23:39:17 -07:00
parent e4df5fe4ff
commit e7d1ee98d2

View File

@@ -206,7 +206,6 @@ public class SimulateMatch {
if(g1.getOutcome().getLifeDelta() == 0){
g1.setGameOver(GameEndReason.Draw);
System.out.println(String.format("Game %d ended in a Draw! Took %d ms.", 1+iGame, sw.getTime()));
sw.stop();
} else {
System.out.println(String.format("\nGame %d ended in %d ms. %s has won!\n", 1+iGame, sw.getTime(), g1.getOutcome().getWinningLobbyPlayer().getName()));
}