mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
fix the issue
Alter the constructor to create the object with setTargetPointer, like the other constructors. I hope nothing relies on it being false. Tests don't show anything breaking.
This commit is contained in:
parent
907a12b6d2
commit
7b40803b4f
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ public class BlocksOrBecomesBlockedTriggeredAbility extends TriggeredAbilityImpl
|
|||
protected boolean setTargetPointer;
|
||||
|
||||
public BlocksOrBecomesBlockedTriggeredAbility(Effect effect, boolean optional) {
|
||||
this(effect, new FilterCreaturePermanent(), optional, null, false);
|
||||
this(effect, new FilterCreaturePermanent(), optional, null, true);
|
||||
}
|
||||
|
||||
public BlocksOrBecomesBlockedTriggeredAbility(Effect effect, FilterPermanent filter, boolean optional) {
|
||||
|
|
Loading…
Reference in a new issue