fixed another compilation error

This commit is contained in:
Evan Kranzler 2020-01-06 20:50:14 -05:00
parent 9e7fcd33cd
commit 5239d0258b

View file

@ -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);
}