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/char.js

11 lines
292 B

const Discord = require('discord.js');
const CharData = require('../../models/char');
module.exports = async client => {
client.misc.cache.chars = new Discord.Collection();
for await (const char of CharData.find()) {
client.misc.cache.chars.set(char.name, char.id);
}
}