Skip to content

Commit

Permalink
forgor
Browse files Browse the repository at this point in the history
  • Loading branch information
Efnilite committed Sep 30, 2024
1 parent e3b6a76 commit 6d002fb
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,18 @@ public final class PreciousStonesRegion extends Region {

private final transient Field field;

public PreciousStonesRegion(final Field field) {
public PreciousStonesRegion(Field field) {
this.field = field;
}

@Override
public boolean contains(final Location l) {
return field.envelops(l);
public boolean contains(Location location) {
return field.envelops(location);
}

@Override
public boolean isMember(final OfflinePlayer p) {
return field.isInAllowedList(p.getName());
public boolean isMember(OfflinePlayer offlinePlayer) {
return field.isInAllowedList(offlinePlayer.getName());
}

@Override
Expand Down

0 comments on commit 6d002fb

Please sign in to comment.