diff --git a/html-src/rules/accordionsrevenge.html b/html-src/rules/accordionsrevenge.html index fb69e5ba..f8d404e7 100644 --- a/html-src/rules/accordionsrevenge.html +++ b/html-src/rules/accordionsrevenge.html @@ -15,7 +15,7 @@ This card must be the last remaining card in order to win the game.

Notes

Accordion's Revenge is unwinnable if the first or second card is -declared. As such, PySol will reselect the declared card if it -is chosen. +declared. As such, PySol will never select either of those cards as +the target.

The concept of Accordion's Revenge was invented by Mark Masten. diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index 90a64a09..4d90c9bf 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -112,7 +112,7 @@ class GI: # extra flags GT_BETA = 1 << 12 # beta version of game driver - GT_CHILDREN = 1 << 13 # *not used* + GT_CHILDREN = 1 << 13 GT_CONTRIB = 1 << 14 # contributed games under the GNU GPL GT_HIDDEN = 1 << 15 # not visible in menus, but games can be loaded GT_OPEN = 1 << 16 diff --git a/pysollib/ui/tktile/menubar.py b/pysollib/ui/tktile/menubar.py index 763a21af..d28292d6 100644 --- a/pysollib/ui/tktile/menubar.py +++ b/pysollib/ui/tktile/menubar.py @@ -614,12 +614,13 @@ class PysolMenubarTkCommon: menu.add_command( label=n_("&Statistics..."), command=self.mPlayerStats, accelerator=m+"T") - menu.add_command( - label=n_("D&emo statistics..."), - command=lambda: self.mPlayerStats(mode=1101)) menu.add_command( label=n_("Log..."), command=lambda: self.mPlayerStats(mode=103)) + menu.add_separator() + menu.add_command( + label=n_("D&emo statistics..."), + command=lambda: self.mPlayerStats(mode=1101)) menu.add_command( label=n_("Demo log..."), command=lambda: self.mPlayerStats(mode=1103))