From 95591737978e966b9900924ee908fe988478c8bd Mon Sep 17 00:00:00 2001 From: Joe R Date: Thu, 15 Feb 2024 22:34:51 -0500 Subject: [PATCH] Fixed missing index in Love a Duck. --- pysollib/games/interlock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pysollib/games/interlock.py b/pysollib/games/interlock.py index f5a31070..02cff08d 100644 --- a/pysollib/games/interlock.py +++ b/pysollib/games/interlock.py @@ -165,7 +165,7 @@ class Interlock(Game): class LoveADuck_RowStack(Interlock_StackMethods, Yukon_AC_RowStack): def acceptsCards(self, from_stack, cards): - if len(self.cards) == 0 and self.id > self.STEP[0] - 1: + if len(self.cards) == 0 and self.id > self.STEP[0][0] - 1: return False if (self.isDropdownMove(from_stack) and len(cards) == len(from_stack.cards)):