1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Sorting lists of alternate names.

This commit is contained in:
Joe R 2022-11-02 18:08:25 -04:00
parent ed3fa526de
commit e7f8944adb
3 changed files with 6 additions and 4 deletions

View file

@ -743,6 +743,7 @@ class GameManager:
# if 0 and gi.si.game_flags & GI.GT_XORIGINAL:
# return
# print gi.id, gi.name
gi.altnames = sorted(gi.altnames)
self.__all_games[gi.id] = gi
self.__all_gamenames[gi.name] = gi
for n in gi.altnames:

View file

@ -1343,7 +1343,8 @@ registerGame(GameInfo(79, WaningMoon, "Waning Moon",
registerGame(GameInfo(125, Lucas, "Lucas",
GI.GT_FORTY_THIEVES, 2, 0, GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(109, Deuces, "Deuces",
GI.GT_FORTY_THIEVES, 2, 0, GI.SL_MOSTLY_SKILL))
GI.GT_FORTY_THIEVES, 2, 0, GI.SL_MOSTLY_SKILL,
altnames=("Twos", "Les Deux")))
registerGame(GameInfo(196, Corona, "Corona",
GI.GT_FORTY_THIEVES, 2, 0, GI.SL_BALANCED))
registerGame(GameInfo(195, Quadrangle, "Quadrangle",

View file

@ -318,12 +318,12 @@ class RegalFamily(Game):
registerGame(GameInfo(302, StHelena, "St. Helena",
GI.GT_2DECK_TYPE, 2, 2, GI.SL_BALANCED,
altnames=("Napoleon's Favorite",
"Washington's Favorite")
))
"Washington's Favorite")))
registerGame(GameInfo(408, BoxKite, "Box Kite",
GI.GT_2DECK_TYPE, 2, 0, GI.SL_BALANCED))
registerGame(GameInfo(620, LesQuatreCoins, "Les Quatre Coins",
GI.GT_2DECK_TYPE, 2, 2, GI.SL_MOSTLY_SKILL,
altnames=("Four Corners",)))
altnames=("Four Corners", "Cornerstones",
"Corner Patience")))
registerGame(GameInfo(621, RegalFamily, "Regal Family",
GI.GT_2DECK_TYPE, 2, 0, GI.SL_BALANCED))