Fix default install directory when logger is provided

pull/33/head
Pat Hartl 2023-11-12 02:10:04 -06:00
parent 1a0cff3914
commit 5fb4fadfb4
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ namespace LANCommander.SDK
public GameManager(Client client, string defaultInstallDirectory, ILogger logger)
{
Client = client;
DefaultInstallDirectory = DefaultInstallDirectory;
DefaultInstallDirectory = defaultInstallDirectory;
Logger = logger;
}