Skip to content

Commit f0df8eb

Browse files
committed
Add a couple alternate names
1 parent 78331a8 commit f0df8eb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pysollib/gamedb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,7 @@ def getNaturalSortKey(self, text):
853853
# Sort numbers numerically, and strings alphabetically
854854
def convert(text):
855855
return int(text) if text.isdigit() else text.lower()
856-
856+
857857
return [convert(c) for c in re.split(r'(\d+)', text)]
858858

859859
#

pysollib/games/fortythieves.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1513,7 +1513,7 @@ def inSuitSequence(self, card1, card2):
15131513
GI.GT_FORTY_THIEVES, 2, 0, GI.SL_MOSTLY_SKILL))
15141514
registerGame(GameInfo(462, Josephine, "Josephine",
15151515
GI.GT_FORTY_THIEVES, 2, 0, GI.SL_MOSTLY_SKILL,
1516-
altnames=("Forty Bandits")))
1516+
altnames=("Forty Bandits", "Pack of Thieves")))
15171517
registerGame(GameInfo(493, MarieRose, "Marie Rose",
15181518
GI.GT_FORTY_THIEVES, 3, 0, GI.SL_MOSTLY_SKILL))
15191519
registerGame(GameInfo(503, BigStreets, "Big Streets",

pysollib/games/pyramid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1941,7 +1941,7 @@ def shallHighlightMatch(self, stack1, card1, stack2, card2):
19411941
altnames=("Three Pharaohs",)))
19421942
registerGame(GameInfo(657, Baroness, "Baroness",
19431943
GI.GT_PAIRING_TYPE, 1, 0, GI.SL_BALANCED,
1944-
altnames=('Five Piles',)))
1944+
altnames=('Five Piles', 'Foxfire 13')))
19451945
registerGame(GameInfo(658, Apophis, "Apophis",
19461946
GI.GT_PAIRING_TYPE, 1, 2, GI.SL_MOSTLY_LUCK))
19471947
registerGame(GameInfo(659, Cheops, "Cheops",

0 commit comments

Comments
 (0)