From 2570523c3e8bc48e1626d77c9971365c8af430e5 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Thu, 8 Jan 2026 23:42:21 -0600 Subject: [PATCH] Key not found errors with Plinko --- KfChatDotNetBot/Commands/Kasino/PlinkoCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KfChatDotNetBot/Commands/Kasino/PlinkoCommand.cs b/KfChatDotNetBot/Commands/Kasino/PlinkoCommand.cs index 9a356e1..250c881 100644 --- a/KfChatDotNetBot/Commands/Kasino/PlinkoCommand.cs +++ b/KfChatDotNetBot/Commands/Kasino/PlinkoCommand.cs @@ -262,7 +262,7 @@ public class PlinkoCommand : ICommand public (int row, int col) POSITION; public PlinkoBall() { - POSITION = (0, DIFFICULTY); + POSITION = (0, DIFFICULTY - 1); } public void Iterate()