fixed issue 242 - check all modes for targets

This commit is contained in:
BetaSteward 2011-09-05 22:02:50 -04:00
parent ac70150512
commit 6d4c3aa8d9
7 changed files with 26 additions and 6 deletions

View file

@ -305,6 +305,7 @@ public class StackAbility implements StackObject, Ability {
@Override
public void newId() {}
@Override
public Ability getStackAbility() {
return ability;
}
@ -321,4 +322,9 @@ public class StackAbility implements StackObject, Ability {
public Modes getModes() {
return ability.getModes();
}
@Override
public boolean canChooseTarget(Game game) {
return ability.canChooseTarget(game);
}
}