This commit is contained in:
Skillz4Killz
2021-04-13 17:59:19 +00:00
committed by GitHub
parent c2f2afb211
commit 9446960bb0
8 changed files with 18 additions and 18 deletions
+1 -1
View File
@@ -30,5 +30,5 @@ export async function getEmojis(guildId: string, addToCache = true) {
cacheHandlers.set("guilds", guildId, guild);
}
return new Collection(result.map(e => [e.id!, e]));
return new Collection(result.map((e) => [e.id!, e]));
}