From 43c151a7d382a71aa1820e1b30133358684513fc Mon Sep 17 00:00:00 2001 From: IgorMCesar Date: Wed, 23 Oct 2024 19:57:31 +0100 Subject: [PATCH] feat: change card image of elemental turn sequence counter --- .../CounterSystem/Counters/ElementalTurnSequenceCounter.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Hearthstone Deck Tracker/Hearthstone/CounterSystem/Counters/ElementalTurnSequenceCounter.cs b/Hearthstone Deck Tracker/Hearthstone/CounterSystem/Counters/ElementalTurnSequenceCounter.cs index bf5588090..6f53a3d10 100644 --- a/Hearthstone Deck Tracker/Hearthstone/CounterSystem/Counters/ElementalTurnSequenceCounter.cs +++ b/Hearthstone Deck Tracker/Hearthstone/CounterSystem/Counters/ElementalTurnSequenceCounter.cs @@ -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[] { @@ -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);