1
0
forked from keinBot/cuffeo

photo support. don't ask

This commit is contained in:
Flummi
2021-05-11 07:32:08 +00:00
parent 7f6cb345b5
commit 6d66f2a5e1
3 changed files with 9 additions and 2 deletions

View File

@@ -11,7 +11,10 @@ export default bot => {
bot._cmd.set("315", msg => { // who_end
bot.server.channel.set(chan, whois);
whois = [...new Set(whois)];
Array(Math.ceil(whois.length / 10)).fill().map(_ => whois.splice(0, 10)).forEach(l => bot.whois(l));
Array(Math.ceil(whois.length / 10)).fill().map(_ => whois.splice(0, 10)).forEach(l => {
//console.log(l);
bot.whois(l);
});
whois = [];
});
};