Skip to content

Commit

Permalink
feat: change card image of elemental turn sequence counter
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorMCesar committed Oct 23, 2024
1 parent ebec50c commit 43c151a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Hearthstone_Deck_Tracker.Hearthstone.CounterSystem.Counters;
public class ElementalTurnSequenceCounter : NumericCounter
{
public override string LocalizedName => LocUtil.Get("Counter_ElementalTurnSequence", useCardLanguage: true);
protected override string? CardIdToShowInUI => HearthDb.CardIds.Collectible.Neutral.Lamplighter;
protected override string? CardIdToShowInUI => HearthDb.CardIds.Collectible.Neutral.AzeriteGiant;

public override string[] RelatedCards => new string[]
{
Expand Down Expand Up @@ -52,7 +52,7 @@ public void HandleElementalPlayed(IGame game, IHsGameState gameState, Entity ent
{
if(!Game.IsTraditionalHearthstoneMatch)
return;

var isCurrentController = IsPlayerCounter ? entity.IsControlledBy(game.Player.Id)
: entity.IsControlledBy(game.Opponent.Id);

Expand Down

0 comments on commit 43c151a

Please sign in to comment.