From 7a0ef95525240ef8b45c1e616c697258d07974fc Mon Sep 17 00:00:00 2001 From: MrPowerGamerBR Date: Tue, 25 Jan 2022 15:04:38 -0300 Subject: [PATCH] Change `members` resolved objects to DiscordInteractionGuildMember instead of DiscordGuildMember --- common/src/main/kotlin/entity/Interactions.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/main/kotlin/entity/Interactions.kt b/common/src/main/kotlin/entity/Interactions.kt index 12bfff7a8a8a..e4ee97b5870e 100644 --- a/common/src/main/kotlin/entity/Interactions.kt +++ b/common/src/main/kotlin/entity/Interactions.kt @@ -189,7 +189,7 @@ sealed class Choice { @Serializable data class ResolvedObjects( - val members: Optional> = Optional.Missing(), + val members: Optional> = Optional.Missing(), val users: Optional> = Optional.Missing(), val roles: Optional> = Optional.Missing(), val channels: Optional> = Optional.Missing(),