From 79eb8b67852b60a2160e93b279ac0819b4a59b07 Mon Sep 17 00:00:00 2001 From: SupremeMortal <6178101+SupremeMortal@users.noreply.github.com> Date: Sat, 14 Sep 2024 22:01:46 +0100 Subject: [PATCH] Add `guild_template_code` to `GuildCreateSchema` Fixes guild creation due to additional property error. --- src/util/schemas/GuildCreateSchema.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util/schemas/GuildCreateSchema.ts b/src/util/schemas/GuildCreateSchema.ts index 41e3b214e..ae9d275bb 100644 --- a/src/util/schemas/GuildCreateSchema.ts +++ b/src/util/schemas/GuildCreateSchema.ts @@ -28,4 +28,5 @@ export interface GuildCreateSchema { channels?: ChannelModifySchema[]; system_channel_id?: string; rules_channel_id?: string; + guild_template_code?: string; }