now Replicators wait 2 seconds before making first move

This commit is contained in:
Kjistóf 2016-05-13 23:17:07 +02:00
parent 0346d99201
commit 46ecc68500

View File

@ -26,7 +26,7 @@ public class FlowOfTime extends Timer {
public void start(long delay) {
schedule(new GameOver(), delay);
scheduleAtFixedRate(new ReplicatorAI(), 0, 2000);
scheduleAtFixedRate(new ReplicatorAI(), 2000, 2000);
}
public void stopTime() {