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
This commit is contained in:
alogindtractor
2026-02-06 21:34:30 -08:00
committed by GitHub
parent 57e1f7eb04
commit daba3012a4

View File

@@ -116,7 +116,7 @@ public class SlotsCommand : ICommand
using (var board = new KiwiSlotBoard(wager)) using (var board = new KiwiSlotBoard(wager))
{ {
board.LoadAssets(); board.LoadAssets();
board.ExecuteGameLoop(spins, rigged); board.ExecuteGameLoop(spins, 0, rigged);
using (var finalImageStream = board.ExportAndCleanup()) using (var finalImageStream = board.ExportAndCleanup())
{ {
if (finalImageStream == null) if (finalImageStream == null)