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:
parent
49e48bada4
commit
eb3bb5dad8
1 changed files with 4 additions and 2 deletions
|
@ -358,9 +358,11 @@ class PysolMenubar(PysolMenubarTk):
|
||||||
if 1 and gi.id == self.game.id:
|
if 1 and gi.id == self.game.id:
|
||||||
# force change of game
|
# force change of game
|
||||||
continue
|
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
|
# don't change game category
|
||||||
continue
|
# continue
|
||||||
won, lost = self.app.stats.getStats(self.app.opt.player, gi.id)
|
won, lost = self.app.stats.getStats(self.app.opt.player, gi.id)
|
||||||
if type == 'all':
|
if type == 'all':
|
||||||
games.append(gi.id)
|
games.append(gi.id)
|
||||||
|
|
Loading…
Add table
Reference in a new issue