You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The cards an elemental hero can play are designated in the body of the card, as opposed to its types. Therefore, any calls to filter_related() will be inaccurate.
To Reproduce
Create a Briar deck.
all_cards= [] # contains all cards ...briar=Card.from_full_name('Briar')
deck=Deck(name='test', hero=briar)
deck.filter_related(all_cards)
Expected behavior
You should see Earth and Lightning cards in the list.