Skip to content

Commit

Permalink
Removed console.logs (forgot that for release, but it shouldn't be an…
Browse files Browse the repository at this point in the history
… issue)
  • Loading branch information
Soundofdarkness committed Jun 8, 2022
1 parent 613f8b2 commit f4c02a5
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions plugins/blitzgg.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ function getPage(runesJson, champInfo, queue, role) {
try {
// Break Json down to the perks data and stat shards
const perksData = runesJson["runes"];
console.log(perksData);

const runes = [];
let tree = 0;
Expand All @@ -99,8 +98,6 @@ function getPage(runesJson, champInfo, queue, role) {
// If the second perk of the second tree => only allow candidates of the same tree
if(i === 4){
candidates = candidatesPre.filter(x => x.treeId === tree);
console.log("found " + candidates.length);
console.log(candidates);
}
else {
candidates = candidatesPre;
Expand Down Expand Up @@ -128,7 +125,6 @@ function getPage(runesJson, champInfo, queue, role) {

// Add the primary rune
runes.push(runesJson["primaryRune"]);
//console.log(runesJson["primaryRune"]);
// Determine selected perk ids
const selectedPerkIds = removePerkIds(runes);//.concat(statShards);
// console.log(selectedPerkIds);
Expand Down

0 comments on commit f4c02a5

Please sign in to comment.