Skip to content
This repository has been archived by the owner on Oct 14, 2023. It is now read-only.

Commit

Permalink
Bugfix -> Changed schedule time
Browse files Browse the repository at this point in the history
  • Loading branch information
EinfacheSache committed Aug 3, 2023
1 parent b00adb9 commit 9b63b6c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ private void neoServerIPsUpdateSchedule() {
public void run() {
neoServerIPs = getNeoIPs();
}
}, 0, 1000 * 10);
}, 0, 1000 * 30);
}

private void versionCheckSchedule() {
Expand Down Expand Up @@ -250,7 +250,7 @@ public void run() {
attackRunning[0] = true;
}
}
}, 1000 * 3, 1000 * 3);
}, 1000 * 5, 1000 * 5);
}

private void backendServerIPUpdater() {
Expand Down Expand Up @@ -280,7 +280,7 @@ public void run() {
backend.setIp(ip);
}
}
}, 1000, 1000 * 10);
}, 1000, 1000 * 15);
}

public JSONArray getNeoServerIPs() {
Expand Down

0 comments on commit 9b63b6c

Please sign in to comment.