Misc minor improvements

Open dialogs now filter by correct file extensions

Sort sprites by name (instead of disk order)

Better handle blank author names in zspr files.

Sort paths by name. (Otherwise the Bomb shop entry if present looks
wrong)
This commit is contained in:
Kevin Cathcart
2018-01-07 01:31:56 -05:00
parent 07275316ed
commit f3bdc230a7
2 changed files with 21 additions and 10 deletions

View File

@@ -781,7 +781,7 @@ class Spoiler(object):
outfile.write('\n\nPaths:\n\n')
path_listings = []
for location, path in self.paths.items():
for location, path in sorted(self.paths.items()):
path_lines = []
for region, exit in path:
if exit is not None: