mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-20 14:57:45 +01:00
chore: tidy-up, move files shared between dalamud and injector into separate assembly
This commit is contained in:
parent
6f99cfe48c
commit
f44c6794e7
29 changed files with 174 additions and 129 deletions
|
|
@ -58,7 +58,7 @@ public static class Troubleshooting
|
|||
/// </summary>
|
||||
internal static void LogTroubleshooting()
|
||||
{
|
||||
var startInfo = Service<DalamudStartInfo>.Get();
|
||||
var startInfo = Service<Dalamud>.Get().StartInfo;
|
||||
var configuration = Service<DalamudConfiguration>.Get();
|
||||
var interfaceManager = Service<InterfaceManager>.GetNullable();
|
||||
var pluginManager = Service<PluginManager>.GetNullable();
|
||||
|
|
@ -72,7 +72,7 @@ public static class Troubleshooting
|
|||
EverStartedLoadingPlugins = pluginManager?.InstalledPlugins.Where(x => x.HasEverStartedLoad).Select(x => x.InternalName).ToList(),
|
||||
DalamudVersion = Util.AssemblyVersion,
|
||||
DalamudGitHash = Util.GetGitHash(),
|
||||
GameVersion = startInfo.GameVersion.ToString(),
|
||||
GameVersion = startInfo.GameVersion?.ToString() ?? "Unknown",
|
||||
Language = startInfo.Language.ToString(),
|
||||
BetaKey = configuration.DalamudBetaKey,
|
||||
DoPluginTest = configuration.DoPluginTest,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue