forked from External/mage
fixed another compilation error
This commit is contained in:
parent
9e7fcd33cd
commit
5239d0258b
1 changed files with 2 additions and 2 deletions
|
|
@ -34,9 +34,9 @@ public enum TargetController {
|
|||
private final DamagedPlayerThisTurnPredicate damagedPlayerThisTurnPredicate;
|
||||
|
||||
TargetController() {
|
||||
this.ownerPredicate = this.getOwnerPredicate();
|
||||
this.ownerPredicate = new OwnerPredicate(this);
|
||||
this.playerPredicate = new PlayerPredicate(this);
|
||||
this.controllerPredicate = this.getControllerPredicate();
|
||||
this.controllerPredicate = new ControllerPredicate(this);
|
||||
this.damagedPlayerThisTurnPredicate = new DamagedPlayerThisTurnPredicate(this);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue