1
0
Fork 0
master
Liza 2023-09-18 10:54:02 +02:00
parent 4335e09fbe
commit 09ff48b96e
Signed by: liza
GPG Key ID: 7199F8D727D55F67
2 changed files with 3 additions and 2 deletions

View File

@ -17,8 +17,8 @@ internal sealed class Configuration : IPluginConfiguration
public sealed class CharacterInfo public sealed class CharacterInfo
{ {
public ulong LocalContentId { get; set; } public ulong LocalContentId { get; set; }
public string CachedPlayerName { get; set; } public string? CachedPlayerName { get; set; }
public string CachedWorldName { get; set; } public string? CachedWorldName { get; set; }
} }
public sealed class ArmouryConfiguration public sealed class ArmouryConfiguration

View File

@ -120,6 +120,7 @@ internal sealed class DiscardWindow : Window
Quantity = x.Sum(y => y.InventoryItem->Quantity), Quantity = x.Sum(y => y.InventoryItem->Quantity),
Selected = !notSelected.Contains(x.Key), Selected = !notSelected.Contains(x.Key),
}) })
.OrderBy(x => x.Name.ToLower())
.ToList(); .ToList();
} }