This commit is contained in:
2026-07-18 15:21:20 -04:00
parent 6062d5b60c
commit 74f065e0f5
51 changed files with 634 additions and 285 deletions
@@ -298,7 +298,9 @@
var inDeck = deckCards.ToHashSet();
var otherDiverSlot = activeDiverSlot == 0
? divers.Count > 1 ? divers[1] : null
: divers.Count > 0 ? divers[0] : null;
: divers.Count > 0
? divers[0]
: null;
return AllCards
.Where(c => c.Category is "Agent" or "Spell" or "Immortalized")