Better way to handle ignored
This commit is contained in:
parent
bc770b55aa
commit
ae60dee283
1 changed files with 1 additions and 2 deletions
|
@ -77,6 +77,7 @@
|
|||
}
|
||||
|
||||
function pickem (id) {
|
||||
picked[Number(id)] = null;
|
||||
var available = pkmn.filter(i => !ignored_pkmn.includes(i) & !picked.includes(i));
|
||||
var ix = Math.floor(Math.random()*available.length);
|
||||
var elem = document.getElementById(id);
|
||||
|
@ -104,7 +105,6 @@
|
|||
if (!ignored_pkmn.includes(to_ignore)) {
|
||||
ignored_pkmn[ignored_pkmn.length] = to_ignore;
|
||||
}
|
||||
picked[i] = null;
|
||||
elem.style.color = "white";
|
||||
}
|
||||
ignored_pkmn.sort();
|
||||
|
@ -115,7 +115,6 @@
|
|||
for (i=0; i<6; i++) {
|
||||
var elem = document.getElementById(i.toString());
|
||||
elem.innerHTML = "";
|
||||
picked[i] = null;
|
||||
elem.style.color = "white";
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue