From d885fb94c4e0d63dee83cc884b80778894734e9e Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Thu, 5 May 2022 18:32:46 +0700 Subject: [PATCH] Fix id --- Bot/Games/Store.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bot/Games/Store.fs b/Bot/Games/Store.fs index 118cc78..0a54509 100644 --- a/Bot/Games/Store.fs +++ b/Bot/Games/Store.fs @@ -311,7 +311,7 @@ let sendBackalleyEmbed (ctx : IDiscordContext) = embed.Color <- DiscordColor.Black embed.Description <- "Hey, what do you want kid? Did you come alone?" builder.AddEmbed embed |> ignore - let button = DiscordButtonComponent(ButtonStyle.Success, $"ShowJpegInventory-0", $"Show me your stash") :> DiscordComponent + let button = DiscordButtonComponent(ButtonStyle.Success, $"ShowJpegInventory-0-0", $"Show me your stash") :> DiscordComponent builder.AddComponents [| button |] |> ignore do! GuildEnvironment.botClientStore.Value.SendMessageAsync(channel, builder)