Release 1.10.5.0 - Autumn Update 2025

This commit is contained in:
Regalis11
2025-09-17 13:44:21 +03:00
parent d13836ce87
commit caa0326cf8
120 changed files with 2584 additions and 635 deletions
@@ -256,6 +256,15 @@ namespace Barotrauma.Networking
}
string downloadFolder = downloadFolders[(FileTransferType)fileType];
#if CLIENT && DEBUG
if (GameClient.MultiClientTestMode)
{
//append the name of the client to the download folder to avoid multiple clients
//from trying to download a file into the same path at the same time
downloadFolder += "_" + GameMain.Client.Name;
}
#endif
if (!Directory.Exists(downloadFolder))
{
try