diff --git a/vob.py b/vob.py index 82861dd3f7989c3122aeeb087ebec05881e1cb3b..e82e23ec8e737a855e66bee47e91e828131d11a5 100644 --- a/vob.py +++ b/vob.py @@ -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)