diff --git a/vollerei/cli/hsr.py b/vollerei/cli/hsr.py index 661c355..4d34a6a 100644 --- a/vollerei/cli/hsr.py +++ b/vollerei/cli/hsr.py @@ -482,7 +482,7 @@ class UpdateCommand(Command): archive_file = State.game.cache.joinpath(remote_voicepack.name) try: download_result = utils.download( - update_diff.path, archive_file, file_len=update_diff.size + remote_voicepack.path, archive_file, file_len=update_diff.size ) except Exception as e: self.line_error(f"Couldn't download update: {e}") @@ -582,7 +582,7 @@ class UpdateDownloadCommand(Command): archive_file = State.game.cache.joinpath(remote_voicepack.name) try: download_result = utils.download( - update_diff.path, archive_file, file_len=update_diff.size + remote_voicepack.path, archive_file, file_len=update_diff.size ) except Exception as e: self.line_error(f"Couldn't download update: {e}")