1
0
Fork 0
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:
skomoroh 2008-03-17 15:04:13 +00:00
parent 212c8ed5ce
commit b9ed601697
4 changed files with 5 additions and 3 deletions

View file

@ -289,6 +289,7 @@ class GI:
303, 547, 738)), 303, 547, 738)),
("Albert Morehead", (362,)), ("Albert Morehead", (362,)),
("David Parlett", (64, 98, 294, 338, 654, 674,)), ("David Parlett", (64, 98, 294, 338, 654, 674,)),
("Randy Rasa", (192,)),
("Captain Jeffrey T. Spaulding", (400,)), ("Captain Jeffrey T. Spaulding", (400,)),
("John Stoneham", (201,)), ("John Stoneham", (201,)),
("Bryan Stout", (655,)), ("Bryan Stout", (655,)),

View file

@ -436,7 +436,8 @@ class DoubleLarasGame(RelaxedLarasGame):
# register the game # register the game
registerGame(GameInfo(37, LarasGame, "Lara's 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", registerGame(GameInfo(13006, RelaxedLarasGame, "Lara's Game Relaxed",
GI.GT_2DECK_TYPE, 2, 1, GI.SL_BALANCED)) GI.GT_2DECK_TYPE, 2, 1, GI.SL_BALANCED))
registerGame(GameInfo(13007, DoubleLarasGame, "Lara's Game Doubled", registerGame(GameInfo(13007, DoubleLarasGame, "Lara's Game Doubled",

View file

@ -1397,7 +1397,7 @@ Error while saving game.
return return
if SELECT_GAME_MENU: 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 select_func = lambda gi: gi.si.game_type == GI.GT_CUSTOM
games = map(self.app.gdb.get, games = map(self.app.gdb.get,
self.app.gdb.getGamesIdSortedByName()) self.app.gdb.getGamesIdSortedByName())

View file

@ -1379,7 +1379,7 @@ Error while saving game.
bitmap='error') bitmap='error')
return return
if SELECT_GAME_MENU: 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 select_func = lambda gi: gi.si.game_type == GI.GT_CUSTOM
games = map(self.app.gdb.get, games = map(self.app.gdb.get,
self.app.gdb.getGamesIdSortedByName()) self.app.gdb.getGamesIdSortedByName())