mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
Remove unused flags
This commit is contained in:
parent
3be0be1b60
commit
1f89948948
@ -28,7 +28,6 @@ public enum Captions {
|
||||
FLAG_PVP("pvp", "static.flags"),
|
||||
FLAG_HANGING_PLACE("hanging-place", "static.flags"),
|
||||
FLAG_HANGING_BREAK("hanging-break", "static.flags"),
|
||||
FLAG_HANGING_INTERACT("hanging-interact", "static.flags"),
|
||||
FLAG_MISC_INTERACT("misc-interact", "static.flags"),
|
||||
FLAG_MISC_BREAK("misc-break", "static.flags"),
|
||||
FLAG_MISC_PLACE("misc-place", "static.flags"),
|
||||
|
@ -53,7 +53,6 @@ public final class Flags {
|
||||
public static final BooleanFlag SNOW_MELT = new BooleanFlag("snow-melt");
|
||||
public static final BooleanFlag SNOW_FORM = new BooleanFlag("snow-form");
|
||||
public static final BooleanFlag ICE_MELT = new BooleanFlag("ice-melt");
|
||||
public static final BooleanFlag FIRE_SPREAD = new BooleanFlag("fire-spread");
|
||||
public static final BooleanFlag BLOCK_BURN = new BooleanFlag("block-burn");
|
||||
public static final BooleanFlag ICE_FORM = new BooleanFlag("ice-form");
|
||||
public static final BooleanFlag BLOCK_IGNITION = new BooleanFlag("block-ignition");
|
||||
@ -68,7 +67,6 @@ public final class Flags {
|
||||
public static final BooleanFlag VEHICLE_USE = new BooleanFlag("vehicle-use");
|
||||
public static final BooleanFlag HANGING_BREAK = new BooleanFlag("hanging-break");
|
||||
public static final BooleanFlag HANGING_PLACE = new BooleanFlag("hanging-place");
|
||||
public static final BooleanFlag HANGING_INTERACT = new BooleanFlag("hanging-interact");
|
||||
public static final BooleanFlag MISC_PLACE = new BooleanFlag("misc-place");
|
||||
public static final BooleanFlag MISC_BREAK = new BooleanFlag("misc-break");
|
||||
public static final BooleanFlag MISC_INTERACT = new BooleanFlag("misc-interact");
|
||||
@ -119,7 +117,6 @@ public final class Flags {
|
||||
return "Flag value must a timestamp or a boolean";
|
||||
}
|
||||
};
|
||||
public static final BooleanFlag SLEEP = new BooleanFlag("sleep");
|
||||
public static final TeleportDenyFlag DENY_TELEPORT = new TeleportDenyFlag("deny-teleport");
|
||||
public static final BooleanFlag DENY_EXIT = new BooleanFlag("deny-exit");
|
||||
|
||||
|
@ -302,8 +302,7 @@ public abstract class EventUtil {
|
||||
}
|
||||
return !(!notifyPerms || MainUtil
|
||||
.sendMessage(player, Captions.FLAG_TUTORIAL_USAGE,
|
||||
Captions.FLAG_USE.getTranslated() + '/' + Captions.FLAG_HANGING_INTERACT
|
||||
.getTranslated()));
|
||||
Captions.FLAG_USE.getTranslated()));
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user