Fix that Brutal Expulsion don't send damaged planeswalker to exile (fixes #1489).

This commit is contained in:
Quercitron 2016-01-26 02:55:21 +03:00
parent be712c974f
commit c3624d5bce
4 changed files with 99 additions and 8 deletions

View file

@ -79,7 +79,7 @@ public class BrutalExpulsion extends CardImpl {
effect.setText("If that permanent would be put into a graveyard this turn, exile it instead");
mode.getEffects().add(effect);
this.getSpellAbility().addMode(mode);
this.getSpellAbility().addWatcher(new DamagedByWatcher());
this.getSpellAbility().addWatcher(new DamagedByWatcher(true));
}
public BrutalExpulsion(final BrutalExpulsion card) {