refactored ControllerPredicate

This commit is contained in:
Evan Kranzler 2020-01-06 20:04:56 -05:00
parent c14a079cc5
commit 9c3b923b3f
783 changed files with 829 additions and 1689 deletions

View file

@ -36,7 +36,7 @@ public enum TargetController {
TargetController() {
this.ownerPredicate = this.getOwnerPredicate();
this.playerPredicate = new PlayerPredicate(this);
this.controllerPredicate = new ControllerPredicate(this);
this.controllerPredicate = this.getControllerPredicate();
this.damagedPlayerThisTurnPredicate = new DamagedPlayerThisTurnPredicate(this);
}