mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
* bugfixes
git-svn-id: file:///home/shlomif/Backup/svn-dumps/PySolFC/svnsync-repos/pysolfc/PySolFC/trunk@220 efabe8c0-fbe8-4139-b769-b5e6d273206e
This commit is contained in:
parent
212c8ed5ce
commit
b9ed601697
4 changed files with 5 additions and 3 deletions
|
@ -289,6 +289,7 @@ class GI:
|
|||
303, 547, 738)),
|
||||
("Albert Morehead", (362,)),
|
||||
("David Parlett", (64, 98, 294, 338, 654, 674,)),
|
||||
("Randy Rasa", (192,)),
|
||||
("Captain Jeffrey T. Spaulding", (400,)),
|
||||
("John Stoneham", (201,)),
|
||||
("Bryan Stout", (655,)),
|
||||
|
|
|
@ -436,7 +436,8 @@ class DoubleLarasGame(RelaxedLarasGame):
|
|||
# register the game
|
||||
|
||||
registerGame(GameInfo(37, LarasGame, "Lara's Game",
|
||||
GI.GT_2DECK_TYPE, 2, 0, GI.SL_BALANCED))
|
||||
GI.GT_2DECK_TYPE, 2, 0, GI.SL_BALANCED,
|
||||
altnames=("Thirteen Packs",) ))
|
||||
registerGame(GameInfo(13006, RelaxedLarasGame, "Lara's Game Relaxed",
|
||||
GI.GT_2DECK_TYPE, 2, 1, GI.SL_BALANCED))
|
||||
registerGame(GameInfo(13007, DoubleLarasGame, "Lara's Game Doubled",
|
||||
|
|
|
@ -1397,7 +1397,7 @@ Error while saving game.
|
|||
return
|
||||
|
||||
if SELECT_GAME_MENU:
|
||||
menu = self.__menupath[".menubar.select.cusomgames"][2]
|
||||
menu = self.__menupath[".menubar.select.customgames"][2]
|
||||
select_func = lambda gi: gi.si.game_type == GI.GT_CUSTOM
|
||||
games = map(self.app.gdb.get,
|
||||
self.app.gdb.getGamesIdSortedByName())
|
||||
|
|
|
@ -1379,7 +1379,7 @@ Error while saving game.
|
|||
bitmap='error')
|
||||
return
|
||||
if SELECT_GAME_MENU:
|
||||
menu = self.__menupath[".menubar.select.cusomgames"][2]
|
||||
menu = self.__menupath[".menubar.select.customgames"][2]
|
||||
select_func = lambda gi: gi.si.game_type == GI.GT_CUSTOM
|
||||
games = map(self.app.gdb.get,
|
||||
self.app.gdb.getGamesIdSortedByName())
|
||||
|
|
Loading…
Add table
Reference in a new issue