send size 8 dungeon instead (64 levels)

This commit is contained in:
Xevion
2020-04-20 22:10:36 -05:00
parent 48e48d4ae4
commit a6003aaf9e

View File

@@ -74,7 +74,7 @@ class Game(arcade.Window):
self.bullet_list = arcade.SpriteList()
# Create the dungeon
self.dungeon = Dungeon(0, 12)
self.dungeon = Dungeon(0, 8)
# Set up the player, specifically placing it at these coordinates.
self.player = Player()