Skip to content

Commit

Permalink
fix: hero picking rerolls not working with Battlegrounds skins
Browse files Browse the repository at this point in the history
  • Loading branch information
beheh committed Dec 10, 2024
1 parent 4a08758 commit 7a687b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Hearthstone Deck Tracker/LogReader/Handlers/PowerHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,8 @@ public void Handle(string logLine, IHsGameState gameState, IGame game)
// Souvenir Stand
entity.HasTag(GameTag.BACON_TRINKET) ||
// Heroes during Battlegrounds reroll
entity.HasTag(GameTag.BACON_HERO_CAN_BE_DRAFTED)
entity.HasTag(GameTag.BACON_HERO_CAN_BE_DRAFTED) ||
entity.HasTag(GameTag.BACON_SKIN)
)
entity.CardId = cardId;
entity.Info.LatestCardId = cardId;
Expand Down

0 comments on commit 7a687b4

Please sign in to comment.