Fixing Immortalize in Agents table

This commit is contained in:
2026-06-23 12:32:54 -04:00
parent 960db5f4fd
commit 5ef5ea1ec4
+1 -1
View File
@@ -52,7 +52,7 @@
protected override void OnInitialized()
{
agents = CardDatabase.Cards
.Where(c => c.Category == "Agent")
.Where(c => c.Category is "Agent" or "Immortalized")
.OrderBy(c => c.Cost)
.ThenBy(c => c.Name)
.ToList();