From daba3012a4859c2f462210e3c3f6db57968076a2 Mon Sep 17 00:00:00 2001 From: alogindtractor <251821224+A-Log-In-D-Tractor@users.noreply.github.com> Date: Fri, 6 Feb 2026 21:34:30 -0800 Subject: [PATCH] fix for slot issue (#64) * fix chat message ID handling and index out of bounds error fix chat message ID handling and index out of bounds error * fix feature incorrectly showing for some reason idk why this started happening hopefully this fixes it, actual features might still be broken though * actual fix for slot display issue actual fix for slot display issue after adding rigging i was passing in the rig parameter as the current type of feature --- KfChatDotNetBot/Commands/Kasino/SlotsCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KfChatDotNetBot/Commands/Kasino/SlotsCommand.cs b/KfChatDotNetBot/Commands/Kasino/SlotsCommand.cs index 090b24d..e0db556 100644 --- a/KfChatDotNetBot/Commands/Kasino/SlotsCommand.cs +++ b/KfChatDotNetBot/Commands/Kasino/SlotsCommand.cs @@ -116,7 +116,7 @@ public class SlotsCommand : ICommand using (var board = new KiwiSlotBoard(wager)) { board.LoadAssets(); - board.ExecuteGameLoop(spins, rigged); + board.ExecuteGameLoop(spins, 0, rigged); using (var finalImageStream = board.ExportAndCleanup()) { if (finalImageStream == null)