fmt files damn son

This commit is contained in:
ayntee
2021-04-12 23:13:37 +04:00
parent fb42d03944
commit 1cbc1b8f82
45 changed files with 443 additions and 281 deletions
+2 -2
View File
@@ -12,14 +12,14 @@ export async function createGuild(options: CreateGuild) {
const result = (await rest.runMethod(
"post",
endpoints.GUILDS,
options
options,
)) as DiscordGuild;
const guild = await structures.createDiscordenoGuild(result, 0);
// MANUALLY CACHE THE GUILD
await cacheHandlers.set("guilds", guild.id, guild);
// MANUALLY CACHE THE BOT
await getMember(guild.id, botId)
await getMember(guild.id, botId);
return guild;
}