From eb3bb5dad8580b46b7994aed5b2d05f927096701 Mon Sep 17 00:00:00 2001 From: Joe R Date: Tue, 29 Oct 2024 17:53:50 -0400 Subject: [PATCH] Remove restriction on random game selection by category (#254) --- pysollib/actions.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pysollib/actions.py b/pysollib/actions.py index 65eb5381..2c60dd18 100644 --- a/pysollib/actions.py +++ b/pysollib/actions.py @@ -358,9 +358,11 @@ class PysolMenubar(PysolMenubarTk): if 1 and gi.id == self.game.id: # force change of game continue - if 1 and gi.category != self.game.gameinfo.category: + # Not sure why this check to not change game category existed, + # but commented, as it doesn't make sense. + # if 1 and gi.category != self.game.gameinfo.category: # don't change game category - continue + # continue won, lost = self.app.stats.getStats(self.app.opt.player, gi.id) if type == 'all': games.append(gi.id)