Skip to content

Commit

Permalink
fix: remove legendary on BattlegroundsMinion
Browse files Browse the repository at this point in the history
  • Loading branch information
azeier committed Dec 9, 2024
1 parent 63eedac commit c070db6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ public bool HasReborn
set => SetProp(value);
}

public bool IsLegendary => Card?.Rarity == Rarity.LEGENDARY;
// Battlegrounds Minions never have the legendary Dragon
public bool IsLegendary => false; // Card?.Rarity == Rarity.LEGENDARY;

public bool IsPremium
{
Expand Down

0 comments on commit c070db6

Please sign in to comment.