forked from External/mage
* Kicker and Multikicker - Fixed a bug that the kicked status was not reset if needed (e.g. a Quag Vampires returning from exile of Fiend Hunter had again +1/+1 counters if he was kicked before).
This commit is contained in:
parent
1ab6b72e8a
commit
8259814afd
5 changed files with 42 additions and 14 deletions
|
|
@ -49,7 +49,7 @@ public class MultikickerCount implements DynamicValue {
|
|||
if (card != null) {
|
||||
for (Ability ability: card.getAbilities()) {
|
||||
if (ability instanceof KickerAbility) {
|
||||
count += ((KickerAbility) ability).getKickedCounter();
|
||||
count += ((KickerAbility) ability).getKickedCounter(game);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue