[LTC] Implement Motivated Pony (#10716)

This commit is contained in:
Susucre 2023-08-01 05:51:59 +02:00 committed by GitHub
parent daa201d524
commit 67407a8780
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 135 additions and 2 deletions

View file

@ -37,7 +37,7 @@ public class AttacksTriggeredAbility extends TriggeredAbilityImpl {
setTriggerPhrase("Whenever {this} attacks, ");
}
public AttacksTriggeredAbility(final AttacksTriggeredAbility ability) {
protected AttacksTriggeredAbility(final AttacksTriggeredAbility ability) {
super(ability);
this.text = ability.text;
this.setTargetPointer = ability.setTargetPointer;

View file

@ -22,7 +22,7 @@ public class UntapAllEffect extends OneShotEffect {
this.filter = filter;
}
public UntapAllEffect(final UntapAllEffect effect) {
protected UntapAllEffect(final UntapAllEffect effect) {
super(effect);
this.filter = effect.filter;
}