From 335f651fb0d291bacab2d875a18b82fd9174828e Mon Sep 17 00:00:00 2001 From: Simon Cross Date: Sat, 17 May 2014 18:01:43 +0200 Subject: [PATCH] Start folder for puzzle decks. --- data/location_decks/{test_puzzle.yaml => puzzles/test.yaml} | 0 naja/scenes/new_game.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename data/location_decks/{test_puzzle.yaml => puzzles/test.yaml} (100%) diff --git a/data/location_decks/test_puzzle.yaml b/data/location_decks/puzzles/test.yaml similarity index 100% rename from data/location_decks/test_puzzle.yaml rename to data/location_decks/puzzles/test.yaml diff --git a/naja/scenes/new_game.py b/naja/scenes/new_game.py index da41c01..1b74d61 100644 --- a/naja/scenes/new_game.py +++ b/naja/scenes/new_game.py @@ -79,7 +79,7 @@ class NewGameScene(Scene): def puzzle_game(self, event): self.start_game(GameState.new( - deck='test_puzzle', max_health=4, wins_required=4)) + deck='puzzles/test', max_health=4, wins_required=4)) def start_game(self, state): from naja.scenes.game import GameScene -- 2.34.1