remove default override parameters

This commit is contained in:
igoudt 2017-07-24 14:41:51 +02:00
parent 216e269a31
commit 83928463a4
42 changed files with 150 additions and 126 deletions

View file

@ -47,6 +47,10 @@ public class ControlsPermanentsControllerTriggeredAbility extends StateTriggered
protected final ComparisonType type;
protected final int value;
public ControlsPermanentsControllerTriggeredAbility(FilterPermanent filter, Effect effect){
this(filter, ComparisonType.MORE_THAN, 0, effect);
}
public ControlsPermanentsControllerTriggeredAbility(FilterPermanent filter, ComparisonType type, int value, Effect effect) {
super(Zone.BATTLEFIELD, effect);
this.filter = filter;