From: Skullheadx <704277@pdsb.net> Date: Tue, 22 Nov 2022 04:31:25 +0000 (-0500) Subject: play any of three puzzle packs X-Git-Url: http://git.skullheadx.com/nixos/static/gitweb.js?a=commitdiff_plain;h=ca42338a63ce390e05989a113d593935e1aa2603;p=word-hunt.git play any of three puzzle packs --- diff --git a/Main/__pycache__/game.cpython-310.pyc b/Main/__pycache__/game.cpython-310.pyc index e86c73e..846adec 100644 Binary files a/Main/__pycache__/game.cpython-310.pyc and b/Main/__pycache__/game.cpython-310.pyc differ diff --git a/Main/main.py b/Main/main.py index 08a60e5..8c44cd3 100644 --- a/Main/main.py +++ b/Main/main.py @@ -1,7 +1,7 @@ from setup import * from game import Game -puzzle = f"puzzles/PuzzlePack1/puzzle{random.randint(1,50)}.txt" +puzzle = f"puzzles/PuzzlePack{random.randint(1,3)}/puzzle{random.randint(1,50)}.txt" print(puzzle) scene = Game(puzzle)