diff --git a/Bot/Games/SlotMachine.fs b/Bot/Games/SlotMachine.fs index f34f773..9ff641c 100644 --- a/Bot/Games/SlotMachine.fs +++ b/Bot/Games/SlotMachine.fs @@ -137,7 +137,7 @@ let getJackpotAmount () = GuildEnvironment.connectionString |> Sql.connect |> Sql.query "SELECT stock FROM item WHERE symbol = 'JACKPOT'" - |> Sql.executeRowAsync (fun read -> (read.int "price") * 1) + |> Sql.executeRowAsync (fun read -> (read.int "stock") * 1) let incrementJackpot amount = GuildEnvironment.connectionString