mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-25 02:04:44 +02:00
Fixes #3919
This commit is contained in:
@ -683,8 +683,8 @@ public final class FlagCommand extends Command {
|
||||
TranslatableCaption.of("flag.flag_info_example"),
|
||||
TagResolver.builder()
|
||||
.tag("command", Tag.preProcessParsed("/plot flag set"))
|
||||
.tag("flag", Tag.inserting(Component.text(plotFlag.getName())))
|
||||
.tag("value", Tag.inserting(Component.text(plotFlag.getExample())))
|
||||
.tag("flag", Tag.preProcessParsed(plotFlag.getName()))
|
||||
.tag("value", Tag.preProcessParsed(plotFlag.getExample()))
|
||||
.build()
|
||||
);
|
||||
// Default value
|
||||
|
@ -514,7 +514,7 @@
|
||||
"flag.flag_info_name": "<gray>Name: <gold><flag></gold></gray>",
|
||||
"flag.flag_info_category": "<gray>Category: </gray><gold><value></gold>",
|
||||
"flag.flag_info_description": "<gray>Description: </gray>",
|
||||
"flag.flag_info_example": "<gray>Example: <click:suggest_command:'<command> <flag> <value>'><gold><command> <flag> <value></gold></click></gray>",
|
||||
"flag.flag_info_example": "<gray>Example: <click:run_command:'<command> <flag> <value>'><gold><command> <flag> <value></gold></click></gray>",
|
||||
"flag.flag_info_default_value": "<gray>Default Value: <value></gray>",
|
||||
"flags.flag_category_string": "<gray>String Flags</gray>",
|
||||
"flags.flag_category_integers": "<gray>Integer Flags</gray>",
|
||||
|
Reference in New Issue
Block a user