Skip to content

Commit 90348bf

Browse files
fix: rebase conflicts
1 parent 08511ea commit 90348bf

12 files changed

Lines changed: 19 additions & 17 deletions

File tree

Hearthstone Deck Tracker/Hearthstone/CardIds.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ public class Hunter : EnumerateMultiId<Hunter>
249249
public static readonly MultiIdCard FreezingTrap = new MultiIdCard(Collectible.Hunter.FreezingTrap, Collectible.Hunter.FreezingTrapCore, Collectible.Hunter.FreezingTrapVanilla);
250250
public static readonly MultiIdCard HiddenCache = new MultiIdCard(Collectible.Hunter.HiddenCache);
251251
public static readonly MultiIdCard HiddenMeaning = new MultiIdCard(Collectible.Hunter.HiddenMeaning);
252-
public static readonly MultiIdCard IceTrap = new MultiIdCard(Collectible.Hunter.IceTrap, Collectible.Hunter.IceTrapCorePlaceholder);
252+
public static readonly MultiIdCard IceTrap = new MultiIdCard(Collectible.Hunter.IceTrap, Collectible.Hunter.IceTrapCore);
253253
public static readonly MultiIdCard Misdirection = new MultiIdCard(Collectible.Hunter.Misdirection, Collectible.Hunter.MisdirectionVanilla);
254254
public static readonly MultiIdCard MotionDenied = new MultiIdCard(Collectible.Hunter.MotionDenied);
255255
public static readonly MultiIdCard OpenTheCages = new MultiIdCard(Collectible.Hunter.OpenTheCages);

Hearthstone Deck Tracker/Hearthstone/EffectSystem/Effects/Paladin/CrusaderAuraEnchantment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Hearthstone_Deck_Tracker.Hearthstone.EffectSystem.Effects.Paladin;
55
public class CrusaderAura : EntityBasedEffect
66
{
77
public override string CardId => HearthDb.CardIds.NonCollectible.Neutral.CrusaderAura_CrusaderAuraCoreEnchantment;
8-
protected override string CardIdToShowInUI => HearthDb.CardIds.Collectible.Paladin.CrusaderAuraCorePlaceholderPLACEHOLDER_2022042;
8+
protected override string CardIdToShowInUI => HearthDb.CardIds.Collectible.Paladin.CrusaderAuraCore;
99

1010
public CrusaderAura(int entityId, bool isControlledByPlayer) : base(entityId, isControlledByPlayer)
1111
{

Hearthstone Deck Tracker/Hearthstone/EffectSystem/Effects/Warlock/DemonicStudiesEnchantment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Hearthstone_Deck_Tracker.Hearthstone.EffectSystem.Effects.Warlock;
55
public class DemonicStudiesEnchantment : EntityBasedEffect
66
{
77
public override string CardId => HearthDb.CardIds.NonCollectible.Warlock.DemonicStudies_DemonicStudiesEnchantment;
8-
protected override string CardIdToShowInUI => HearthDb.CardIds.Collectible.Warlock.DemonicStudiesCorePlaceholder;
8+
protected override string CardIdToShowInUI => HearthDb.CardIds.Collectible.Warlock.DemonicStudies;
99

1010
public DemonicStudiesEnchantment(int entityId, bool isControlledByPlayer) : base(entityId, isControlledByPlayer)
1111
{

Hearthstone Deck Tracker/Hearthstone/GameV2.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,9 @@ public void CacheMulliganGuideParams()
593593
MulliganState.KeptCards?.Select(x => x.Card.DbfId).ToArray(),
594594
MulliganState.FinalCardsInHand?.Select(x => x.Card.DbfId).ToArray(),
595595
Metrics.ConstructedMulliganGuideOverlayDisplayed,
596-
PlayerEntity?.GetTag(GameTag.PLAYSTATE) ?? 0
596+
PlayerEntity?.GetTag(GameTag.PLAYSTATE) ?? 0,
597+
true,
598+
false
597599
);
598600
}
599601

Hearthstone Deck Tracker/Hearthstone/RelatedCardsSystem/Cards/DemonHunter/Tuskpiercer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ public HighlightColor ShouldHighlight(Card card, IEnumerable<Card> deck) =>
1313

1414
public class TuskpiercerCorePlaceholder : Tuskpiercer
1515
{
16-
public override string GetCardId() => HearthDb.CardIds.Collectible.Demonhunter.TuskpiercerCorePlaceholder;
16+
public override string GetCardId() => HearthDb.CardIds.Collectible.Demonhunter.TuskpiercerCore;
1717
}

Hearthstone Deck Tracker/Hearthstone/RelatedCardsSystem/Cards/Hunter/BarakKodobane.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ public HighlightColor ShouldHighlight(Card card, IEnumerable<Card> deck) =>
1616

1717
public class BarakKodobaneCore : BarakKodobane
1818
{
19-
public override string GetCardId() => HearthDb.CardIds.Collectible.Hunter.BarakKodobaneCorePlaceholder;
19+
public override string GetCardId() => HearthDb.CardIds.Collectible.Hunter.BarakKodobaneCore;
2020
}

Hearthstone Deck Tracker/Hearthstone/RelatedCardsSystem/Cards/Hunter/MastersCall.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ public HighlightColor ShouldHighlight(Card card, IEnumerable<Card> deck) =>
1313

1414
public class MastersCallCore : MastersCall
1515
{
16-
public override string GetCardId() => HearthDb.CardIds.Collectible.Hunter.MastersCallCorePlaceholder;
16+
public override string GetCardId() => HearthDb.CardIds.Collectible.Hunter.MastersCallCore;
1717
}

Hearthstone Deck Tracker/Hearthstone/RelatedCardsSystem/Cards/Paladin/RedscaleDragontamer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public HighlightColor ShouldHighlight(Card card, IEnumerable<Card> deck) =>
1212

1313
public class RedscaleDragontamerCorePlaceholder : RedscaleDragontamer
1414
{
15-
public override string GetCardId() => HearthDb.CardIds.Collectible.Paladin.RedscaleDragontamerCorePlaceholder;
15+
public override string GetCardId() => HearthDb.CardIds.Collectible.Paladin.RedscaleDragontamerCore;
1616

1717
}

Hearthstone Deck Tracker/Hearthstone/RelatedCardsSystem/Cards/Priest/SpiritGuide.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ public HighlightColor ShouldHighlight(Card card, IEnumerable<Card> deck) =>
1919

2020
public class SpiritGuideCorePlaceholder : SpiritGuide
2121
{
22-
public override string GetCardId() => HearthDb.CardIds.Collectible.Priest.SpiritGuideCorePlaceholder;
22+
public override string GetCardId() => HearthDb.CardIds.Collectible.Priest.SpiritGuideCore;
2323
}

Hearthstone Deck Tracker/Hearthstone/RelatedCardsSystem/Cards/Priest/ThriveInTheShadowsCore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Hearthstone_Deck_Tracker.Hearthstone.RelatedCardsSystem.Cards.Priest;
55

66
public class ThriveInTheShadowsCore : ICardWithHighlight
77
{
8-
public string GetCardId() => HearthDb.CardIds.Collectible.Priest.ThriveInTheShadowsCorePlaceholderPLACEHOLDER_2022042;
8+
public string GetCardId() => HearthDb.CardIds.Collectible.Priest.ThriveInTheShadowsCore;
99

1010
public HighlightColor ShouldHighlight(Card card, IEnumerable<Card> deck) =>
1111
HighlightColorHelper.GetHighlightColor(card.TypeEnum == CardType.SPELL);

0 commit comments

Comments
 (0)