mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-15 21:24:18 +01:00
Remove auto descriptions from newly generated option groups.
This commit is contained in:
parent
c06d5b0871
commit
dfdd5167a8
3 changed files with 3 additions and 3 deletions
|
|
@ -22,7 +22,7 @@ public class ImcModGroup(Mod mod) : IModGroup
|
||||||
|
|
||||||
public Mod Mod { get; } = mod;
|
public Mod Mod { get; } = mod;
|
||||||
public string Name { get; set; } = "Option";
|
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
|
public GroupType Type
|
||||||
=> GroupType.Imc;
|
=> GroupType.Imc;
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ public sealed class MultiModGroup(Mod mod) : IModGroup, ITexToolsGroup
|
||||||
|
|
||||||
public Mod Mod { get; } = mod;
|
public Mod Mod { get; } = mod;
|
||||||
public string Name { get; set; } = "Group";
|
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 ModPriority Priority { get; set; }
|
||||||
public Setting DefaultSettings { get; set; }
|
public Setting DefaultSettings { get; set; }
|
||||||
public readonly List<MultiSubMod> OptionData = [];
|
public readonly List<MultiSubMod> OptionData = [];
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ public sealed class SingleModGroup(Mod mod) : IModGroup, ITexToolsGroup
|
||||||
|
|
||||||
public Mod Mod { get; } = mod;
|
public Mod Mod { get; } = mod;
|
||||||
public string Name { get; set; } = "Option";
|
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 ModPriority Priority { get; set; }
|
||||||
public Setting DefaultSettings { get; set; }
|
public Setting DefaultSettings { get; set; }
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue