Skip to content

Commit

Permalink
Make sure Phoenix is considered as on death effect
Browse files Browse the repository at this point in the history
  • Loading branch information
KittySparkles committed Nov 25, 2023
1 parent e4ef51e commit 5949db8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/CardsFiltering/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,8 @@ export default React.memo(function CardsFiltering(props) {
(ability === 'SURVIVING' && /surviving/i.test(card.ability || '')) ||
(ability === 'ATTACKING' && /attacking/i.test(card.ability || '')) ||
(ability === 'MOVING' && /moving/i.test(card.ability || '')) ||
(ability === 'ON_DEATH' && /on death/i.test(card.ability || '')) ||
(ability === 'ON_DEATH' &&
/(on death|when dying)/i.test(card.ability || '')) ||
(ability === 'PUSH_PULL' && /push|pull/i.test(card.ability || '')) ||
(ability === 'VANILLA' && !card.ability) ||
(ability === 'PUSH' && /push/i.test(card.ability || '')) ||
Expand Down

1 comment on commit 5949db8

@vercel
Copy link

@vercel vercel bot commented on 5949db8 Nov 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

stormbound-kitty – ./

stormbound-kitty.com
stormbound-kitty-git-main-stormbound.vercel.app
stormbound-kitty-stormbound.vercel.app

Please sign in to comment.