Compare commits

..

No commits in common. "5fc65e3c710f0428afcf6f5809c80330ca56c0e3" and "e7217cecb5ee9793fd2fa4691de9a762911fd38b" have entirely different histories.

2 changed files with 1225 additions and 1644 deletions

2787
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -6,8 +6,7 @@ function updateGlobalEmoteRegistry(): 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) => { for (const emote of guild.emojis.cache.values()) {
for (const emote of g.emojis.cache.values()) {
data.list.push({ data.list.push({
ref: emote.name, ref: emote.name,
id: emote.id, id: emote.id,
@ -19,7 +18,6 @@ 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