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())