feat: add "plugin testing" settings to /xlsettings

This commit is contained in:
goat 2020-06-08 14:19:09 +02:00
parent 7ae3a92968
commit cf08eaee87
6 changed files with 55 additions and 9 deletions

View file

@ -9,7 +9,7 @@ using Newtonsoft.Json;
namespace Dalamud
{
[Serializable]
public class DalamudConfiguration
internal class DalamudConfiguration
{
public DiscordFeatureConfiguration DiscordFeatureConfig { get; set; }
@ -36,6 +36,9 @@ namespace Dalamud
public XivChatType GeneralChatType { get; set; } = XivChatType.Debug;
public bool DoPluginTest { get; set; } = false;
public bool DoDalamudTest { get; set; } = false;
[JsonIgnore]
public string ConfigPath;