1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Remove restriction on random game selection by category (#254)

This commit is contained in:
Joe R 2024-10-29 17:53:50 -04:00
parent 49e48bada4
commit eb3bb5dad8

View file

@ -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)