mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-23 00:07:49 +01:00
feat: refactor safe mode, add "no third party" mode for testing
This commit is contained in:
parent
f501534739
commit
fc5d8a8c86
5 changed files with 81 additions and 25 deletions
|
|
@ -34,6 +34,8 @@ namespace Dalamud
|
|||
this.Language = other.Language;
|
||||
this.GameVersion = other.GameVersion;
|
||||
this.DelayInitializeMs = other.DelayInitializeMs;
|
||||
this.NoLoadPlugins = other.NoLoadPlugins;
|
||||
this.NoLoadThirdPartyPlugins = other.NoLoadThirdPartyPlugins;
|
||||
this.BootLogPath = other.BootLogPath;
|
||||
this.BootShowConsole = other.BootShowConsole;
|
||||
this.BootDisableFallbackConsole = other.BootDisableFallbackConsole;
|
||||
|
|
@ -88,6 +90,16 @@ namespace Dalamud
|
|||
/// </summary>
|
||||
public int DelayInitializeMs { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether no plugins should be loaded.
|
||||
/// </summary>
|
||||
public bool NoLoadPlugins { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether no third-party plugins should be loaded.
|
||||
/// </summary>
|
||||
public bool NoLoadThirdPartyPlugins { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the path the boot log file is supposed to be written to.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue