From 7575a99bc38718d49645d7863da7b103adad9a32 Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Fri, 6 May 2022 15:18:51 +0700 Subject: [PATCH] Fix symbol --- Bot/DbService.fs | 2 +- Bot/Games/Store.fs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Bot/DbService.fs b/Bot/DbService.fs index 83eb8bb..ddec0de 100644 --- a/Bot/DbService.fs +++ b/Bot/DbService.fs @@ -52,7 +52,7 @@ let readItem (reader : RowReader) = | mods -> mods |> Array.map convertStatMod |> Array.toList |> Modifiable |> Some) ] |> List.choose id } - + let getPlayerInventory (did : uint64) = connStr |> Sql.connect diff --git a/Bot/Games/Store.fs b/Bot/Games/Store.fs index 0a54509..737f592 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-0", $"Show me your stash") :> DiscordComponent + let button = DiscordButtonComponent(ButtonStyle.Success, $"ShowJpegInventory-0-BACKALLEY", $"Show me your stash") :> DiscordComponent builder.AddComponents [| button |] |> ignore do! GuildEnvironment.botClientStore.Value.SendMessageAsync(channel, builder)