From b9ed601697d487d30446c33cf395445c5cd5cc9b Mon Sep 17 00:00:00 2001 From: skomoroh Date: Mon, 17 Mar 2008 15:04:13 +0000 Subject: [PATCH] * bugfixes git-svn-id: file:///home/shlomif/Backup/svn-dumps/PySolFC/svnsync-repos/pysolfc/PySolFC/trunk@220 efabe8c0-fbe8-4139-b769-b5e6d273206e --- pysollib/gamedb.py | 1 + pysollib/games/larasgame.py | 3 ++- pysollib/tile/menubar.py | 2 +- pysollib/tk/menubar.py | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index 44248231..7e7a5db3 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -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,)), diff --git a/pysollib/games/larasgame.py b/pysollib/games/larasgame.py index 747c3409..d39eea3c 100644 --- a/pysollib/games/larasgame.py +++ b/pysollib/games/larasgame.py @@ -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", diff --git a/pysollib/tile/menubar.py b/pysollib/tile/menubar.py index d1bfa337..6e854588 100644 --- a/pysollib/tile/menubar.py +++ b/pysollib/tile/menubar.py @@ -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()) diff --git a/pysollib/tk/menubar.py b/pysollib/tk/menubar.py index 3ef730b1..bdb00604 100644 --- a/pysollib/tk/menubar.py +++ b/pysollib/tk/menubar.py @@ -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())