* Fury Charm - Fixed that Suspended Cards could not be cast, if last counter was removed with Fury Charm.

This commit is contained in:
LevelX2 2013-09-01 11:15:31 +02:00
parent 5d12d7f1bf
commit 277f9363fd
4 changed files with 10 additions and 9 deletions

View file

@ -150,12 +150,12 @@ class FuryCharmRemoveCounterEffect extends OneShotEffect<FuryCharmRemoveCounterE
public boolean apply(Game game, Ability source) {
Permanent permanent = game.getPermanent(this.getTargetPointer().getFirst(game, source));
if (permanent != null) {
permanent.getCounters().removeCounter(CounterType.TIME, 2);
permanent.removeCounters(CounterType.TIME.getName(), 2, game);
return true;
}
Card card = game.getCard(this.getTargetPointer().getFirst(game, source));
if (card != null) {
card.getCounters().removeCounter(CounterType.TIME, 2);
card.removeCounters(CounterType.TIME.getName(), 2, game);
return true;
}
return false;