Merge pull request #3999 from theelk801/master

remove planeswalker rule
This commit is contained in:
theelk801 2017-09-15 23:38:01 -04:00 committed by GitHub
commit 571988c375
2 changed files with 2 additions and 31 deletions

View file

@ -159,7 +159,7 @@ class CastFromNonHandZoneTargetEffect extends AsThoughEffectImpl {
class VancesBlastingCannonsFlipTrigger extends TriggeredAbilityImpl {
public VancesBlastingCannonsFlipTrigger() {
super(Zone.BATTLEFIELD, new TransformSourceEffect(true));
super(Zone.BATTLEFIELD, new TransformSourceEffect(true), true);
}
public VancesBlastingCannonsFlipTrigger(final VancesBlastingCannonsFlipTrigger ability) {
@ -189,6 +189,6 @@ class VancesBlastingCannonsFlipTrigger extends TriggeredAbilityImpl {
@Override
public String getRule() {
return "Whenever you cast your third spell in a turn, transform {this}";
return "Whenever you cast your third spell in a turn, you may transform {this}";
}
}