From 19d7444946fd4737a6ad0b52ec39cda6105b04c8 Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Fri, 4 Dec 2020 19:27:34 +0100 Subject: [PATCH] Fix flag description --- .../core/plot/flag/implementations/SnowFormFlag.java | 2 +- Core/src/main/resources/lang/messages_en.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowFormFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowFormFlag.java index 50eae78f2..0c19d93cd 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowFormFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowFormFlag.java @@ -36,7 +36,7 @@ public class SnowFormFlag extends BooleanFlag { public static final SnowFormFlag SNOW_FORM_FALSE = new SnowFormFlag(false); private SnowFormFlag(boolean value) { - super(value, TranslatableCaption.of("flags.flag_description_snow_for")); + super(value, TranslatableCaption.of("flags.flag_description_snow_form")); } @Override protected SnowFormFlag flagOf(@Nonnull Boolean value) { diff --git a/Core/src/main/resources/lang/messages_en.json b/Core/src/main/resources/lang/messages_en.json index eac393836..cef391b1e 100644 --- a/Core/src/main/resources/lang/messages_en.json +++ b/Core/src/main/resources/lang/messages_en.json @@ -551,9 +551,9 @@ "flag.flag_list_categories": ": ", "flag.flag_list_flag": ">Click to view information about the flag.\">", "flag.flag_info_name": "Name: ", - "flag.flag_info_category": "Category: ", + "flag.flag_info_category": "Category: ", "flag.flag_info_description": "Description: ", - "flag.flag_info_example": "Example: >/plot flag set ", + "flag.flag_info_example": "Example: >/plot flag set ", "flag.flag_info_default_value": "Default Value: ", "flags.flag_category_string": "String Flags", @@ -579,7 +579,7 @@ "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_description": "Plot description. Supports MiniMessage/Adventure.", "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.flag_description_weather": "Specifies the weather conditions inside of the plot.",