small fix

This commit is contained in:
Evan Kranzler 2018-05-29 12:35:41 -04:00
parent e1aa40cbf7
commit 9372c13cfb

View file

@ -890,11 +890,21 @@ public class Spell extends StackObjImpl implements Card {
return card.addCounters(counter, source, game);
}
@Override
public boolean addCounters(Counter counter, Ability source, Game game, boolean isEffect) {
return card.addCounters(counter, source, game, isEffect);
}
@Override
public boolean addCounters(Counter counter, Ability source, Game game, List<UUID> appliedEffects) {
return card.addCounters(counter, source, game, appliedEffects);
}
@Override
public boolean addCounters(Counter counter, Ability source, Game game, List<UUID> appliedEffects, boolean isEffect) {
return card.addCounters(counter, source, game, appliedEffects, isEffect);
}
@Override
public void removeCounters(String name, int amount, Game game) {
card.removeCounters(name, amount, game);