fix: voicepack detection

This commit is contained in:
tretrauit 2023-06-20 22:35:33 +07:00
parent f549166e2e
commit f1eb1fe2c6
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ class Installer:
:return: List of installed voiceovers
"""
voiceovers = []
async for file in self.get_game_data_path()\
for file in self.get_game_data_path()\
.joinpath("StreamingAssets/AudioAssets/").iterdir():
if file.is_dir():
voiceovers.append(file.name)