Skip to content

Commit

Permalink
Removed XIVLauncher check as it was inconstant
Browse files Browse the repository at this point in the history
Fixes #462
  • Loading branch information
Yuki-Codes committed Jul 26, 2021
1 parent 91bdf04 commit b96dda2
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions Anamnesis/Services/LogService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,17 +99,6 @@ public static void CreateLog()
Log.Information("OS Architecture: " + RuntimeInformation.OSArchitecture.ToString(), "Info");
Log.Information("Process Architecture: " + RuntimeInformation.ProcessArchitecture.ToString(), "Info");
Log.Information("Anamnesis Version: " + VersionInfo.Date, "Info");

// Check for XIVLauncher / Dalamud
Process[] xlProc = Process.GetProcessesByName("XIVLauncher.exe");
if (xlProc != null && xlProc.Length > 0)
{
Log.Information("Running XIVLauncher: true");
}
else
{
Log.Information("Running XIVLauncher: false");
}
}

public Task Initialize()
Expand Down

0 comments on commit b96dda2

Please sign in to comment.