Skip to content

Commit 0b2b2e9

Browse files
fix: corpse counter appearing against any class
1 parent 41f6e85 commit 0b2b2e9

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## **Unreleased**
2+
**Hearthstone**:
3+
- Fixed an issue where corpse counter would appear when the opponent is not a Warlock with Death Knight Tourist.
4+
15
## **Release v1.46.14 - 2025-09-02**
26
**Updated for Hearthstone 33.4**
37

Hearthstone Deck Tracker/Core.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,8 @@ internal static void UpdatePlayerResourcesWidget()
592592

593593
internal static void UpdateOpponentResourcesWidget()
594594
{
595-
Overlay.UpdateOpponentResourcesWidget(Game.Opponent.MaxHealth, Game.Opponent.MaxMana, Game.Opponent.MaxHandSize, Game.Opponent.CorpsesLeft);
595+
var shouldShowCorpsesLeft = Game.Opponent.HasDeathKnightTourist;
596+
Overlay.UpdateOpponentResourcesWidget(Game.Opponent.MaxHealth, Game.Opponent.MaxMana, Game.Opponent.MaxHandSize, shouldShowCorpsesLeft ? Game.Opponent.CorpsesLeft : null);
596597
}
597598

598599
public static class Windows

0 commit comments

Comments
 (0)