Browse Source

Don't redeclare rounds

pull/9/head
Abheek Dhawan 4 years ago
parent
commit
2b96bd6560
  1. 2
      bot/awesomescibo.js

2
bot/awesomescibo.js

@ -477,7 +477,7 @@ async function userRounds(message) {
} }
if (rounds.length > 5) { if (rounds.length > 5) {
let rounds = rounds.slice(0, 5); rounds = rounds.slice(0, 5);
} }
rounds.forEach(async (item, index) => { rounds.forEach(async (item, index) => {

Loading…
Cancel
Save