Fix the emote registry (again)

This commit is contained in:
Alyxia Sother 2022-02-17 11:07:58 +01:00
parent 5fc65e3c71
commit 389aa35124
No known key found for this signature in database
GPG Key ID: 01E16C4E775A37E4
1 changed files with 15 additions and 16 deletions

View File

@ -2,28 +2,27 @@ import {client} from "../index";
import FileManager from "./storage";
import {EmoteRegistryDump} from "../structures";
function updateGlobalEmoteRegistry(): void {
async function updateGlobalEmoteRegistry(): Promise<void> {
const data: EmoteRegistryDump = {version: 1, list: []};
for (const guild of client.guilds.cache.values()) {
guild.fetch().then((g) => {
for (const emote of g.emojis.cache.values()) {
data.list.push({
ref: emote.name,
id: emote.id,
name: emote.name,
requires_colons: emote.requiresColons ?? false,
animated: emote.animated ?? false,
url: emote.url,
guild_id: emote.guild.name,
guild_name: emote.guild.name
});
}
});
let g = await guild.fetch();
for (const emote of g.emojis.cache.values()) {
data.list.push({
ref: emote.name,
id: emote.id,
name: emote.name,
requires_colons: emote.requiresColons ?? false,
animated: emote.animated ?? false,
url: emote.url,
guild_id: emote.guild.name,
guild_name: emote.guild.name
});
}
}
FileManager.open("data/public"); // generate folder if it doesn't exist
FileManager.write("public/emote-registry", data, true);
FileManager.write("public/emote-registry", data, false);
}
client.on("emojiCreate", updateGlobalEmoteRegistry);