Skip to content

Commit

Permalink
v1.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
beheh committed May 14, 2024
1 parent 2a37a39 commit b7ebf49
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## **Release v1.28.0 - 2024-05-14**
**Updated for Hearthstone 29.4.0**

## **Release v1.27.3 - 2024-05-13**
**Features:**
- Switched the tiers shown in Battlegrounds hero picking overlay to a new and improved methodology.\
Expand Down
4 changes: 2 additions & 2 deletions Hearthstone Deck Tracker/Hearthstone Deck Tracker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<NeutralLanguage>en</NeutralLanguage>
<Description>Hearthstone Deck Tracker</Description>
<Copyright>Copyright © HearthSim 2024</Copyright>
<AssemblyVersion>1.27.3</AssemblyVersion>
<FileVersion>1.27.3</FileVersion>
<AssemblyVersion>1.28.0</AssemblyVersion>
<FileVersion>1.28.0</FileVersion>
<UseWPF>true</UseWPF>
<PlatformTarget>x86</PlatformTarget>
<Platforms>x86</Platforms>
Expand Down
6 changes: 3 additions & 3 deletions Hearthstone Deck Tracker/Utility/WotogCounterHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ namespace Hearthstone_Deck_Tracker.Utility
public static class WotogCounterHelper
{
public static Entity? PlayerCthun => Core.Game.Player.PlayerEntities.FirstOrDefault(x => x.CardId == CardIds.Collectible.Neutral.CthunOG && x.Info.OriginalZone != null);
public static Entity? PlayerCthunProxy => Core.Game.Player.PlayerEntities.FirstOrDefault(x => x.CardId == CardIds.NonCollectible.Neutral.Cthun);
public static Entity? OpponentCthun => Core.Game.Opponent.PlayerEntities.FirstOrDefault(x => x.CardId == CardIds.Collectible.Neutral.CthunOG );
public static Entity? OpponentCthunProxy => Core.Game.Opponent.PlayerEntities.FirstOrDefault(x => x.CardId == CardIds.NonCollectible.Neutral.Cthun);
public static Entity? PlayerCthunProxy => Core.Game.Player.PlayerEntities.FirstOrDefault(x => x.CardId == CardIds.NonCollectible.Neutral.CthunOG);
public static Entity? OpponentCthun => Core.Game.Opponent.PlayerEntities.FirstOrDefault(x => x.CardId == CardIds.Collectible.Neutral.CthunOG);
public static Entity? OpponentCthunProxy => Core.Game.Opponent.PlayerEntities.FirstOrDefault(x => x.CardId == CardIds.NonCollectible.Neutral.CthunOG);
public static Entity? PlayerPogoHopper => Core.Game.Player.RevealedEntities.FirstOrDefault(x => x.CardId == CardIds.Collectible.Rogue.PogoHopper && x.Info.OriginalZone != null);
public static Entity? OpponentPogoHopper => Core.Game.Opponent.RevealedEntities.FirstOrDefault(x => x.CardId == CardIds.Collectible.Rogue.PogoHopper && x.Info.OriginalZone != null);

Expand Down

0 comments on commit b7ebf49

Please sign in to comment.