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,11 +2,11 @@ import {client} from "../index";
import FileManager from "./storage"; import FileManager from "./storage";
import {EmoteRegistryDump} from "../structures"; import {EmoteRegistryDump} from "../structures";
function updateGlobalEmoteRegistry(): void { async function updateGlobalEmoteRegistry(): Promise<void> {
const data: EmoteRegistryDump = {version: 1, list: []}; const data: EmoteRegistryDump = {version: 1, list: []};
for (const guild of client.guilds.cache.values()) { for (const guild of client.guilds.cache.values()) {
guild.fetch().then((g) => { let g = await guild.fetch();
for (const emote of g.emojis.cache.values()) { for (const emote of g.emojis.cache.values()) {
data.list.push({ data.list.push({
ref: emote.name, ref: emote.name,
@ -19,11 +19,10 @@ function updateGlobalEmoteRegistry(): void {
guild_name: emote.guild.name guild_name: emote.guild.name
}); });
} }
});
} }
FileManager.open("data/public"); // generate folder if it doesn't exist 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); client.on("emojiCreate", updateGlobalEmoteRegistry);