mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-03-12 04:07:01 -04:00
Cleanup
This commit is contained in:
parent
cb0dd1ec2f
commit
5c8d5c26b4
3 changed files with 7 additions and 6 deletions
|
@ -15,7 +15,7 @@ This card must be the last remaining card in order to win the game.
|
|||
<h3>Notes</h3>
|
||||
<p>
|
||||
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.
|
||||
<p>
|
||||
The concept of Accordion's Revenge was invented by Mark Masten.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue