Skip to content

Commit

Permalink
use funky symbols for map coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
theace0296 committed Sep 2, 2021
1 parent 845097f commit ec8636c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tools/map_coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,14 @@ def main():
for map_name in map_list:
if map_name not in filled_list:
bad_count = bad_count + 1
print("| {} | N | Y |".format(
print("| {} | | |".format(
format_name_for_table(map_name, longest_name_length)))
elif map_name not in empty_list:
bad_count = bad_count + 1
print("| {} | Y | N |".format(
print("| {} | | |".format(
format_name_for_table(map_name, longest_name_length)))
else:
print("| {} | Y | Y |".format(
print("| {} | | |".format(
format_name_for_table(map_name, longest_name_length)))

if (bad_count == 0):
Expand Down

0 comments on commit ec8636c

Please sign in to comment.