[LTC] Implement Of Herbs and Stewed Rabbit (#10718)

This commit is contained in:
Susucre 2023-08-01 05:52:28 +02:00 committed by GitHub
parent 378fd2743e
commit d61e454e77
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 85 additions and 8 deletions

View file

@ -43,7 +43,7 @@ public class AddCountersTargetEffect extends OneShotEffect {
this.amount = amount;
}
public AddCountersTargetEffect(final AddCountersTargetEffect effect) {
protected AddCountersTargetEffect(final AddCountersTargetEffect effect) {
super(effect);
if (effect.counter != null) {
this.counter = effect.counter.copy();

View file

@ -29,7 +29,7 @@ public class FilterControlledPermanent extends FilterPermanent {
}
}
public FilterControlledPermanent(final FilterControlledPermanent filter) {
protected FilterControlledPermanent(final FilterControlledPermanent filter) {
super(filter);
}