mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 22:17:22 +01:00
update logo, fix incorrectly generating data in duties and other situations (we just don't know)
This commit is contained in:
parent
e5a0ff5670
commit
80960c86d3
7 changed files with 95 additions and 56 deletions
|
|
@ -16,7 +16,7 @@ namespace MareSynchronos.Models
|
|||
FileReplacements.Where(x => x.HasFileReplacement)
|
||||
.Concat(FileReplacements.SelectMany(f => f.Associated).Where(f => f.HasFileReplacement))
|
||||
.Concat(FileReplacements.SelectMany(f => f.Associated).SelectMany(f => f.Associated).Where(f => f.HasFileReplacement))
|
||||
.Distinct()
|
||||
.Distinct().OrderBy(f => f.GamePath)
|
||||
.ToList();
|
||||
|
||||
public List<FileReplacement> FileReplacements { get; set; } = new List<FileReplacement>();
|
||||
|
|
@ -26,6 +26,9 @@ namespace MareSynchronos.Models
|
|||
|
||||
public bool IsReady => FileReplacements.All(f => f.Computed);
|
||||
|
||||
[JsonProperty]
|
||||
public string CacheHash { get; set; } = string.Empty;
|
||||
|
||||
[JsonProperty]
|
||||
public uint JobId { get; set; } = 0;
|
||||
public void AddAssociatedResource(FileReplacement resource, FileReplacement mdlParent, FileReplacement mtrlParent)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue