Fix: Don't continue looking hard for new challenges when they are not findable.

This commit is contained in:
Alberth
2014-12-30 17:59:56 +01:00
parent 8ed36c044e
commit 588502838c

View File

@@ -259,8 +259,8 @@ function BusyBeeClass::Start()
monitor_timeout = 0; // Force updating of the monitor.
}
if (total_missing > 1) {
new_goal_timeout = 1 * 74; // If more missing goals, wait only a short while.
if (best_cid != null && total_missing > 1) {
new_goal_timeout = 1 * 74; // More missing goals and we can find new ones, wait only a short while.
} else {
new_goal_timeout = 30 * 74;
}