From a78d0f076ed25b04847ad780b06ba4187cb2d6c3 Mon Sep 17 00:00:00 2001 From: Boz <40073828+Bozcx@users.noreply.github.com> Date: Sat, 25 Jul 2026 21:19:12 -0400 Subject: [PATCH] Update DownloadManager.cs Fix download path, now downloads to MOD/Download --- Source.Engine/DownloadManager.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source.Engine/DownloadManager.cs b/Source.Engine/DownloadManager.cs index 2369cf26..758c8252 100644 --- a/Source.Engine/DownloadManager.cs +++ b/Source.Engine/DownloadManager.cs @@ -455,6 +455,8 @@ void QueueInternal(ReadOnlySpan pBaseURL, ReadOnlySpan pURLPath, Rea Span szBasePath = stackalloc char[MAX_PATH]; strcpy(szBasePath, Source.Engine.Common.Gamedir); + StrTools.AppendSlash(szBasePath); + strcat(szBasePath, DownloadCache.DownloadPathID); strcpy(rc.GamePath, pGamePath); if (bCompressed)