mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-01-01 05:13:43 +01:00
Added object identification for equipment, weapons, action/animations and character customizations. Added mod filtering for changed items and authors. A bunch of bugfixes.
This commit is contained in:
parent
61be374b67
commit
2ff98f2338
21 changed files with 563 additions and 160 deletions
|
|
@ -18,7 +18,6 @@ namespace Penumbra.Mod
|
|||
public string Description { get; set; } = "";
|
||||
public string Version { get; set; } = "";
|
||||
public string Website { get; set; } = "";
|
||||
public List< string > ChangedItems { get; set; } = new();
|
||||
|
||||
[JsonProperty( ItemConverterType = typeof( GamePathConverter ) )]
|
||||
public Dictionary< GamePath, GamePath > FileSwaps { get; set; } = new();
|
||||
|
|
@ -50,7 +49,6 @@ namespace Penumbra.Mod
|
|||
Description = newMeta.Description;
|
||||
Version = newMeta.Version;
|
||||
Website = newMeta.Website;
|
||||
ChangedItems = newMeta.ChangedItems;
|
||||
FileSwaps = newMeta.FileSwaps;
|
||||
Groups = newMeta.Groups;
|
||||
FileHash = newMeta.FileHash;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue