mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-07-03 06:04:43 +02:00
Compare commits
1 Commits
fix/v6/leg
...
fix/v7/min
Author | SHA1 | Date | |
---|---|---|---|
96fcbabfe6 |
@ -689,8 +689,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
|
||||
|
@ -58,7 +58,7 @@ public class DescriptionFlag extends StringFlag<DescriptionFlag> {
|
||||
|
||||
@Override
|
||||
public String getExample() {
|
||||
return "<gold>This is my plot!";
|
||||
return "&6This is my plot!";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -58,7 +58,7 @@ public class GreetingFlag extends StringFlag<GreetingFlag> {
|
||||
|
||||
@Override
|
||||
public String getExample() {
|
||||
return "<gold>Welcome to my plot!";
|
||||
return "&6Welcome to my plot!";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Reference in New Issue
Block a user