Skip to content

Commit 0c55908

Browse files
committed
fix: dragons counter increasing when a reborn dragon is destroyed by a played card
1 parent d7f6b3d commit 0c55908

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

HSTracker/Hearthstone/CounterSystem/Counters/PlayedDragonsCounter.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ class PlayedDragonsCounter: NumericCounter {
6868
return
6969
}
7070

71+
if prevValue != Zone.hand.rawValue {
72+
return
73+
}
74+
7175
if AppDelegate.instance().coreManager.logReaderManager.powerGameStateParser.currentBlock?.type != "PLAY" {
7276
return
7377
}

0 commit comments

Comments
 (0)