[LTC] Implement The Black Gate (#10725)

This commit is contained in:
Susucre 2023-08-03 06:25:54 +02:00 committed by GitHub
parent ec3bb197fb
commit 5a6ee98b41
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 154 additions and 2 deletions

View file

@ -26,7 +26,7 @@ public class FilterPlayer extends FilterImpl<Player> {
super(name);
}
public FilterPlayer(final FilterPlayer filter) {
protected FilterPlayer(final FilterPlayer filter) {
super(filter);
this.extraPredicates.addAll(filter.extraPredicates);
}

View file

@ -41,7 +41,7 @@ public class TargetPlayer extends TargetImpl {
this.notTarget = notTarget;
}
public TargetPlayer(final TargetPlayer target) {
protected TargetPlayer(final TargetPlayer target) {
super(target);
this.filter = target.filter.copy();
}