Skip to content

Commit

Permalink
Solve problems caused by game files being disorder
Browse files Browse the repository at this point in the history
  • Loading branch information
DreamGallery committed Oct 27, 2023
1 parent 406e2d7 commit 1868f3f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/adv_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ def extract(filename: str) -> list[str]:
for line in f:
if "text" in line:
dial_list.append(line)
dial_list.sort(key=lambda x: float(get_clip(x)["_startTime"]))
return dial_list


Expand Down

0 comments on commit 1868f3f

Please sign in to comment.