Skip to content

Commit

Permalink
Fixes RedHatter#32 Tyr not listing non-Paladin minions
Browse files Browse the repository at this point in the history
  • Loading branch information
batstyx committed Feb 22, 2024
1 parent a18a770 commit 63452e1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Graveyard/TyrView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ internal static ViewConfig Config
{
CreateView = () => new TyrView(),
UpdateOn = GameEvents.OnPlayerPlayToGraveyard,
Condition = card => card.CardClass == CardClass.PALADIN
&& card.Type == "Minion"
Condition = card => card.Type == "Minion"
&& card.Attack >= 2
&& card.Attack <= 4,
});
Expand Down

0 comments on commit 63452e1

Please sign in to comment.