diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Captions.java b/Core/src/main/java/com/plotsquared/core/configuration/Captions.java index 69899d857..aa06e7095 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Captions.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Captions.java @@ -604,6 +604,7 @@ public enum Captions implements Caption { + " set to `default` to use the gamemode default, and `false` to disable flight entirely.", "Flags"), FLAG_DESCRIPTION_UNTRUSTED("Set to `false` to disallow untrusted players from visiting the plot.", "Flags"), FLAG_DESCRIPTION_DENY_EXIT("Set to `true` to disallow players from exiting the plot.", "Flags"), + FLAG_DESCRIPTION_CHAT("Set to `false` to prevent plot chat on the plot .", "Flags"), FLAG_DESCRIPTION_DESCRIPTION("Plot description. Supports '&' color codes.", "Flags"), FLAG_DESCRIPTION_GREETING("Message sent to players on plot entry. Supports '&' color codes.", "Flags"), FLAG_DESCRIPTION_FAREWELL("Message sent to players when leaving the plot. Supports '&' color codes.", "Flags"), diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ChatFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ChatFlag.java index af1293bbd..81da5294a 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ChatFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ChatFlag.java @@ -35,7 +35,7 @@ public class ChatFlag extends BooleanFlag { public static final ChatFlag CHAT_FLAG_FALSE = new ChatFlag(false); protected ChatFlag(boolean value) { - super(value, Captions.FLAG_DESCRIPTION_DENY_EXIT); + super(value, Captions.FLAG_DESCRIPTION_CHAT); } @Override protected ChatFlag flagOf(@NotNull Boolean value) {