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.
11 lines
350 B
11 lines
350 B
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);}
|
|
}
|
|
}; |