Skip to content
This repository has been archived by the owner on Nov 30, 2020. It is now read-only.

Commit

Permalink
Fix stupid ass bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
McSinyx committed Aug 8, 2018
1 parent 6d2f6d6 commit 1e7e981
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion brutalmaze/game.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# You should have received a copy of the GNU Affero General Public License
# along with Brutal Maze. If not, see <https://www.gnu.org/licenses/>.

__version__ = '0.8.20'
__version__ = '0.8.21'

import re
from argparse import ArgumentParser, FileType, RawTextHelpFormatter
Expand Down
2 changes: 1 addition & 1 deletion brutalmaze/maze.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def __init__(self, fps, size, headless, export_dir, export_rate):
self.surface = None
else:
self.surface = pygame.display.set_mode(size, pygame.RESIZABLE)
self.export_dir = path.abspath(export_dir)
self.export_dir = path.abspath(export_dir) if export_dir else ''
self.next_export = self.export_rate = export_rate
self.export = []

Expand Down
2 changes: 1 addition & 1 deletion brutalmaze/settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Toggle mute: m
Move left: a
Move right: d
Move up: w
Move down: d
Move down: s
# Move hero using mouse
Auto move: Mouse3
Long-range attack: Mouse1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='brutalmaze',
version='0.8.20',
version='0.8.21',
description='A minimalist TPS game with fast-paced action',
long_description=long_description,
url='https://github.com/McSinyx/brutalmaze',
Expand Down

0 comments on commit 1e7e981

Please sign in to comment.