From 88b92bed4b50344de5dc16091ccc1628a514372d Mon Sep 17 00:00:00 2001 From: Alstruit <34786806+Alstruit@users.noreply.github.com> Date: Wed, 4 Dec 2024 02:22:18 -0600 Subject: [PATCH] Change creating directories --- DepotDownloader/ContentDownloader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DepotDownloader/ContentDownloader.cs b/DepotDownloader/ContentDownloader.cs index 7f1ce472..46661f98 100644 --- a/DepotDownloader/ContentDownloader.cs +++ b/DepotDownloader/ContentDownloader.cs @@ -406,7 +406,7 @@ namespace DepotDownloader private static async Task DownloadWebFile(uint appId, string fileName, string url) { - if (!CreateDirectories(appId, appId, 0, out var installDir)) + if (!CreateDirectories(appId, 0, 0, out var installDir)) { Console.WriteLine("Error: Unable to create install directories!"); return;