remove sublayer parameter in SetBasePowerToughnessSourceEffect

This commit is contained in:
xenohedron 2023-08-26 00:26:25 -04:00
parent be4b568e88
commit 5d0c1c96c8
35 changed files with 45 additions and 58 deletions

View file

@ -42,8 +42,8 @@ public class SetBasePowerToughnessSourceEffect extends ContinuousEffectImpl {
this.staticText = "{this}'s power and toughness are each equal to the number of " + amount.getMessage();
}
public SetBasePowerToughnessSourceEffect(int power, int toughness, Duration duration, SubLayer subLayer) {
this(StaticValue.get(power), StaticValue.get(toughness), duration, subLayer);
public SetBasePowerToughnessSourceEffect(int power, int toughness, Duration duration) {
this(StaticValue.get(power), StaticValue.get(toughness), duration, SubLayer.SetPT_7b);
this.staticText = "{this} has base power and toughness " + power + '/' + toughness + ' ' + duration.toString();
}