mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-25 02:04:44 +02:00
Fixes #1484
This commit is contained in:
@ -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() {
|
||||
|
@ -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 {
|
||||
|
Reference in New Issue
Block a user