mirror of
https://github.com/correl/mage.git
synced 2025-04-10 17:00:08 -09: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;
|
protected boolean setTargetPointer;
|
||||||
|
|
||||||
public BlocksOrBecomesBlockedTriggeredAbility(Effect effect, boolean optional) {
|
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) {
|
public BlocksOrBecomesBlockedTriggeredAbility(Effect effect, FilterPermanent filter, boolean optional) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue