Thread created on Tue Jan 15, 2013 19:29:34 Last replied to on Wed Jan 16, 2013 13:06:26
The Chain bar used to update every 10 seconds.
It's now been changed to update every 60 seconds, this is annoyingly slow, and have cost us several chain bonus'es.
Javascript triggers the update which has been updated (Notice 60000 = 60 seconds), comment saying 10 seconds does no longer apply. 60 seconds is WAAAY too long, and renders the "live" chain bar almost useless.
Hopefully this is just a mistake, and not intentionally.
/*
* If is set, refresh div #chainupdates once after seconds
* UPDATED - just do it every 10 seconds
*/
window.setInterval(function() {
console.log ('Updating chain div');
jQuery('#chainupdates').load('/includes/chainbar.php?force=1&factionID=XXXXX');
}, 60000);
Follow @TornRPG