Skip to content

Commit

Permalink
Fix: removed debug puzzle loading
Browse files Browse the repository at this point in the history
  • Loading branch information
halfburnttoast committed Sep 11, 2022
1 parent 23c1900 commit 746964c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dungeon_cross.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
from resource_path import resource_path
from save_game import SaveFile

VERSION = "v0.20.0"
VERSION = "v0.20.1"
G_LOG_LEVEL = logging.INFO
TILE_SIZE = 90
G_RESOLUTION = (TILE_SIZE * 9, TILE_SIZE * 9)
Expand Down Expand Up @@ -666,7 +666,7 @@ def main():

# create game and load levels
game = DungeonCross(screen, sound)
game.load_puzzle_book("debug_puzzles.json.gz")
game.load_puzzle_book()
game.load_save()
game_run = True

Expand Down

0 comments on commit 746964c

Please sign in to comment.