Fix stupid ass bugs

This commit is contained in:
Nguyễn Gia Phong 2018-08-08 20:05:21 +07:00
parent 6d2f6d6ad3
commit 1e7e981e81
4 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -77,7 +77,7 @@ class Maze:
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 = []

View File

@ -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

View File

@ -7,7 +7,7 @@ with open('README.rst') as f:
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',