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.
Luno/util/cache/ar.js

11 lines
350 B

3 years ago
const AR = require('../../models/ar');
module.exports = async client => {
client.misc.cache.ar = new Map();
client.misc.cache.arIgnore = new Map();
for await (const ar of AR.find()) {
client.misc.cache.ar.set(ar.gid, ar.triggers);
if (ar.ignoreChs.length) {client.misc.cache.arIgnore.set(ar.gid, ar.ignoreChs);}
}
};