From f1eb1fe2c65ab9789741f91853939cdfe37d1e86 Mon Sep 17 00:00:00 2001 From: tretrauit Date: Tue, 20 Jun 2023 22:35:33 +0700 Subject: [PATCH] fix: voicepack detection --- worthless/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worthless/installer.py b/worthless/installer.py index d0bb515..d0f0bd1 100644 --- a/worthless/installer.py +++ b/worthless/installer.py @@ -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)