Remove auto descriptions from newly generated option groups.

This commit is contained in:
Ottermandias 2024-05-23 17:24:42 +02:00
parent c06d5b0871
commit dfdd5167a8
3 changed files with 3 additions and 3 deletions

View file

@ -22,7 +22,7 @@ public class ImcModGroup(Mod mod) : IModGroup
public Mod Mod { get; } = mod;
public string Name { get; set; } = "Option";
public string Description { get; set; } = "A single IMC manipulation.";
public string Description { get; set; } = string.Empty;
public GroupType Type
=> GroupType.Imc;

View file

@ -25,7 +25,7 @@ public sealed class MultiModGroup(Mod mod) : IModGroup, ITexToolsGroup
public Mod Mod { get; } = mod;
public string Name { get; set; } = "Group";
public string Description { get; set; } = "A non-exclusive group of settings.";
public string Description { get; set; } = string.Empty;
public ModPriority Priority { get; set; }
public Setting DefaultSettings { get; set; }
public readonly List<MultiSubMod> OptionData = [];

View file

@ -23,7 +23,7 @@ public sealed class SingleModGroup(Mod mod) : IModGroup, ITexToolsGroup
public Mod Mod { get; } = mod;
public string Name { get; set; } = "Option";
public string Description { get; set; } = "A mutually exclusive group of settings.";
public string Description { get; set; } = string.Empty;
public ModPriority Priority { get; set; }
public Setting DefaultSettings { get; set; }