Skip to content

Commit 8c85bea

Browse files
committed
Add icons for overviewer POI configuration
1 parent 88e1a45 commit 8c85bea

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

mcdungeon.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1060,6 +1060,7 @@ def listTHunts(world, oworld, genpoi=False):
10601060
# GenPOI mode
10611061
if (args.command == 'genpoi'):
10621062
# List the known dungeons in OverViewer POI format, and exit
1063+
quiet_mode = True
10631064
if args.outputdir is None:
10641065
args.outputdir = 'C:\\overview'
10651066
output = '#\n# Cut from here into your OverViewer config.py and customise\n#\n\n'
@@ -1074,7 +1075,7 @@ def listTHunts(world, oworld, genpoi=False):
10741075
tHunts = listTHunts(world, oworld, genpoi=True)
10751076
output = '\t],\n\t\'markers\': [\n'
10761077
output += '\t\tdict(name="Dungeons", filterFunction=dungeonFilter, icon="icons/marker_tower_red.png", checked=True),\n'
1077-
output += '\t\tdict(name="TreasureHunts", filterFunction=tHuntFilter, icon="icons/marker_chest.png", checked=True),\n'
1078+
output += '\t\tdict(name="TreasureHunts", filterFunction=tHuntFilter, icon="icons/marker_chest_red.png", checked=True),\n'
10781079
output += '\t\tdict(name="Waypoints", filterFunction=tHuntWPFilter, icon="icons/marker_chest.png", checked=False),\n'
10791080
output += '\t]\n}\n'
10801081
print output

overviewer_icons/marker_chest.png

909 Bytes
Loading

overviewer_icons/marker_chest_red.png

798 Bytes
Loading

0 commit comments

Comments
 (0)