link range - correctly flag missing resonators
This commit is contained in:
parent
590eeb6876
commit
361c665626
@ -44,12 +44,16 @@ window.getPortalRange = function(d) {
|
|||||||
|
|
||||||
var lvl = 0;
|
var lvl = 0;
|
||||||
var resoMissing = false;
|
var resoMissing = false;
|
||||||
|
// currently we get a short resonator array when some are missing
|
||||||
|
if (d.resonators.length < 8) {
|
||||||
|
resoMissing = true;
|
||||||
|
}
|
||||||
|
// but in the past we used to always get an array of 8, but will 'null' objects for some entries. maybe that will return?
|
||||||
$.each(d.resonators, function(ind, reso) {
|
$.each(d.resonators, function(ind, reso) {
|
||||||
if(!reso) {
|
if(!reso) {
|
||||||
resoMissing = true;
|
resoMissing = true;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
lvl += parseInt(reso.level);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var range = {
|
var range = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user