Skip to content

Commit

Permalink
Take away is a golf type game, and other organization fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
joeraz committed Feb 1, 2024
1 parent 5b64964 commit 6d1b81d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion contrib/help-pages-translation-to-french/gen-html.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import pysollib.games # noqa: E402,F402,I100,I202
import pysollib.games.mahjongg # noqa: E402,F402
import pysollib.games.special # noqa: E402,F401,F402
import pysollib.games.ultra # noqa: E402,F401,F402

try:
os.mkdir('html')
Expand Down
6 changes: 3 additions & 3 deletions pysollib/games/takeaway.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,11 +242,11 @@ def createGame(self):

# register the game
registerGame(GameInfo(334, TakeAway, "Take Away",
GI.GT_1DECK_TYPE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL,
GI.GT_GOLF | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL,
altnames=("Eliminator", "Wolfpack", "Strip")))
registerGame(GameInfo(335, FourStacks, "Four Stacks",
GI.GT_1DECK_TYPE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(654, Striptease, "Striptease",
GI.GT_1DECK_TYPE, 1, 0, GI.SL_MOSTLY_SKILL))
GI.GT_GOLF, 1, 0, GI.SL_MOSTLY_SKILL))
registerGame(GameInfo(784, TakeAway8, "Take Away 8",
GI.GT_1DECK_TYPE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL))
GI.GT_GOLF | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL))
1 change: 0 additions & 1 deletion scripts/all_games.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import pysollib.games
import pysollib.games.mahjongg # noqa: F401
import pysollib.games.special
import pysollib.games.ultra # noqa: F401
from pysollib.gamedb import GAME_DB
from pysollib.gamedb import GI
from pysollib.mfxutil import latin1_normalize
Expand Down

0 comments on commit 6d1b81d

Please sign in to comment.