From 9493f79f9c83e42f3638b3b67762e643a9cafdd5 Mon Sep 17 00:00:00 2001 From: Joe R Date: Thu, 17 Nov 2022 17:13:16 -0500 Subject: [PATCH] Ladybug is probably more of a variable redeals game. --- html-src/rules/ladybug.html | 2 +- pysollib/games/numerica.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/html-src/rules/ladybug.html b/html-src/rules/ladybug.html index 829cd0e2..26a3dd4f 100644 --- a/html-src/rules/ladybug.html +++ b/html-src/rules/ladybug.html @@ -1,6 +1,6 @@

Ladybug

-One deck type. 1 deck. Unlimited redeals. +One deck type. 1 deck. Varying number of redeals.

Object

diff --git a/pysollib/games/numerica.py b/pysollib/games/numerica.py index 8e648c86..a9dadad6 100644 --- a/pysollib/games/numerica.py +++ b/pysollib/games/numerica.py @@ -1102,7 +1102,7 @@ class Ladybug(Game): x = x + l.XS self.setRegion(s.rows, (x0-l.XS//2, y-l.CH//2, 999999, 999999)) x, y = l.XM, l.YM - s.talon = Ladybug_Talon(x, y, self, max_rounds=-1, num_deal=3) + s.talon = Ladybug_Talon(x, y, self, max_rounds=-2, num_deal=3) l.createText(s.talon, 'ne') y = y + l.YS s.waste = Ladybug_Waste(x, y, self) @@ -1239,4 +1239,4 @@ registerGame(GameInfo(760, Aglet, "Aglet", GI.GT_1DECK_TYPE | GI.GT_OPEN | GI.GT_ORIGINAL, 1, 0, GI.SL_MOSTLY_SKILL)) registerGame(GameInfo(836, Ladybug, "Ladybug", - GI.GT_1DECK_TYPE, 1, -1, GI.SL_BALANCED)) + GI.GT_1DECK_TYPE, 1, -2, GI.SL_BALANCED))