Skip to content
Snippets Groups Projects
Commit 8b42064c authored by gospodnetic's avatar gospodnetic
Browse files

Don't load VP-Tri files at all

parent e1cfbad6
No related branches found
No related tags found
No related merge requests found
......@@ -46,6 +46,11 @@ def main():
logs = []
for idx, filename in enumerate(filenames):
print("Loading file {}/{} ".format(idx+1, len(filenames)), end="\r")
# VP-Tri maps are big and take long to load, only to see there is nothing there.
# Currently the maps can be only distinguished by having this string in the filename.
if "VP-Tri_Map" in filename:
continue
try:
log = Log(filename)
logs.append(log)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment