This commit is contained in:
Jesse Boyd
2018-05-17 16:23:27 +10:00
parent a83b51eb12
commit d6c472fcdf
3 changed files with 62 additions and 25 deletions

View File

@ -73,7 +73,7 @@ public class Owner extends SetCommand {
}
final String finalName = name;
final UUID finalUUID = uuid;
boolean removeDenied = plot.isDenied(finalUUID);
final boolean removeDenied = plot.isDenied(finalUUID);
Runnable run = new Runnable() {
@Override
public void run() {

View File

@ -276,6 +276,8 @@ public class Settings extends Config {
public static boolean DISABLE_UNOCCUPIED = false;
@Comment("Disable redstone when all owners/trusted/members are offline")
public static boolean DISABLE_OFFLINE = false;
@Comment("Detect and cancel invalid pistons on the edge of plots (e.g. placed with WorldEdit)")
public static boolean DETECT_INVALID_EDGE_PISTONS = false;
}
public static final class Claim {