1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00
This commit is contained in:
Joe R 2025-02-17 20:49:25 -05:00
parent cb0dd1ec2f
commit 5c8d5c26b4
3 changed files with 7 additions and 6 deletions

View file

@ -15,7 +15,7 @@ This card must be the last remaining card in order to win the game.
<h3>Notes</h3> <h3>Notes</h3>
<p> <p>
Accordion's Revenge is unwinnable if the first or second card is Accordion's Revenge is unwinnable if the first or second card is
declared. As such, PySol will reselect the declared card if it declared. As such, PySol will never select either of those cards as
is chosen. the target.
<p> <p>
The concept of Accordion's Revenge was invented by Mark Masten. The concept of Accordion's Revenge was invented by Mark Masten.

View file

@ -112,7 +112,7 @@ class GI:
# extra flags # extra flags
GT_BETA = 1 << 12 # beta version of game driver 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_CONTRIB = 1 << 14 # contributed games under the GNU GPL
GT_HIDDEN = 1 << 15 # not visible in menus, but games can be loaded GT_HIDDEN = 1 << 15 # not visible in menus, but games can be loaded
GT_OPEN = 1 << 16 GT_OPEN = 1 << 16

View file

@ -614,12 +614,13 @@ class PysolMenubarTkCommon:
menu.add_command( menu.add_command(
label=n_("&Statistics..."), label=n_("&Statistics..."),
command=self.mPlayerStats, accelerator=m+"T") command=self.mPlayerStats, accelerator=m+"T")
menu.add_command(
label=n_("D&emo statistics..."),
command=lambda: self.mPlayerStats(mode=1101))
menu.add_command( menu.add_command(
label=n_("Log..."), label=n_("Log..."),
command=lambda: self.mPlayerStats(mode=103)) 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( menu.add_command(
label=n_("Demo log..."), label=n_("Demo log..."),
command=lambda: self.mPlayerStats(mode=1103)) command=lambda: self.mPlayerStats(mode=1103))