Skip to content

Commit

Permalink
Tyr Improvements
Browse files Browse the repository at this point in the history
- List excluding Neutral minions RedHatter#32
- Improved horizontal alignment #28
  • Loading branch information
batstyx committed Feb 22, 2024
2 parents 58a8c0b + f3484fa commit 0a5381f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Graveyard/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.13.1.0")]
[assembly: AssemblyFileVersion("1.13.1.0")]
[assembly: AssemblyVersion("1.13.2.0")]
[assembly: AssemblyFileVersion("1.13.2.0")]
8 changes: 4 additions & 4 deletions Graveyard/TyrView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,9 @@ internal static ViewConfig Config
{
CreateView = () => new TyrView(),
UpdateOn = GameEvents.OnPlayerPlayToGraveyard,
Condition = card => card.CardClass == CardClass.PALADIN
&& card.Type == "Minion"
&& card.Attack >= 2
&& card.Attack <= 4,
Condition = card => card.Type == "Minion"
&& card.Attack >= 2
&& card.Attack <= 4,
});
}

Expand Down Expand Up @@ -75,6 +74,7 @@ public TitledListView(string name)
VerticalAlignment = VerticalAlignment.Top,
MinHeight = 30,
MinWidth = 30,
Margin = new Thickness(-15,0,0,0),
Text = name,
};
Children.Add(Title);
Expand Down

0 comments on commit 0a5381f

Please sign in to comment.