You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Natsuki/util/cache/anime.js

16 lines
518 B

const Discord = require('discord.js');
const AniData = require('../../models/anime');
module.exports = async client => {
client.misc.cache.anime = new Discord.Collection();
client.misc.cache.animeID = new Discord.Collection();
for await (const ani of AniData.find()) {
3 years ago
if (ani.queued !== true) {
client.misc.cache.anime.set(ani.japname, ani.id);
client.misc.cache.anime.set(ani.name, ani.id);
client.misc.cache.animeID.set(ani.id, ani.name);
3 years ago
}
}
}