* 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:
LevelX2 2013-07-22 08:34:01 +02:00
parent 1ab6b72e8a
commit 8259814afd
5 changed files with 42 additions and 14 deletions

View file

@ -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);
}
}
}