Agg Refresh while on "Vacation"
|
|
I have noticed that if I do an Agg refresh while not set to do any jobs, the script does not actually refresh. Am I missing something, or is this a bug? |
|
|
Find this line
if (boss.jackpot==0 && Page.now >= next_task_time()) return; // keep hitting unless an action is about to complete and change it to if (boss.jackpot==0 && (Page.now >= next_task_time() && next_task_time() > 0)) return; // keep hitting unless an action is about to complete |
|
|
thanks |
|
|
Works great now!! Thanks.. |