File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
aagen
2
2
=====
3
3
4
- ![ Screenshot] ( ./screenshot2 .png )
4
+ ![ Screenshot] ( ./screenshot3 .png )
5
5
6
6
Installation
7
7
------------
@@ -30,6 +30,7 @@ aagen with the `-f` option:
30
30
31
31
32
32
As aagen runs, on the console you will see various informational and debug messages.
33
+ To see more messages you can add the ` -v ` option (or ` -vv ` , ` -vvv ` for even more).
33
34
One of the first messages output to the console will report the "seed" that was
34
35
used to generate this dungeon:
35
36
Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ def main():
65
65
dungeon_display = DungeonDisplay (dungeon_map )
66
66
dungeon_generator = DungeonGenerator (dungeon_map , args .seed )
67
67
68
+ dungeon_map .flush ()
68
69
dungeon_display .draw (verbosity = args .verbose )
69
70
70
71
running = True
@@ -97,6 +98,7 @@ def main():
97
98
dungeon_map = json .load (f , object_hook = map_from_dict )
98
99
dungeon_display = DungeonDisplay (dungeon_map )
99
100
dungeon_generator = DungeonGenerator (dungeon_map , args .seed )
101
+ dungeon_map .flush ()
100
102
dungeon_display .draw (verbosity = args .verbose )
101
103
running = True
102
104
elif event .type == pygame .VIDEORESIZE :
You can’t perform that action at this time.
0 commit comments