Skip to content

Commit

Permalink
Fix: Added missing subcommands
Browse files Browse the repository at this point in the history
  • Loading branch information
T14D3 committed Jan 15, 2025
1 parent d009903 commit 8ef64c0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/main/java/de/t14d3/zones/brigadier/SubCommands.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,18 @@
import net.kyori.adventure.text.format.NamedTextColor;

public enum SubCommands {
INFO(Component.text("Shows information about a region\nTEXT").color(NamedTextColor.GOLD)),
INFO(Component.text("Shows information about a region").color(NamedTextColor.GOLD)),
LIST(Component.text("Lists all regions").color(NamedTextColor.GOLD)),
DELETE(Component.text("Deletes a region").color(NamedTextColor.DARK_RED)),
CREATE(Component.text("Creates a new region").color(NamedTextColor.GREEN)),
EXPAND(Component.text("Expands a region").color(NamedTextColor.AQUA)),
SELECT(Component.text("Visually selects a region").color(NamedTextColor.LIGHT_PURPLE)),
SET(Component.text("Sets permissions for a region").color(NamedTextColor.BLUE)),
CANCEL(Component.text("Cancels the current operation").color(NamedTextColor.RED)),
SAVE(Component.text("Saves all regions to file")),
LOAD(Component.text("Loads all regions from file"));
RENAME(Component.text("Renames a region").color(NamedTextColor.YELLOW)),
SUBCREATE(Component.text("Creates a sub-region").color(NamedTextColor.DARK_PURPLE)),
SAVE(Component.text("Saves all regions to file").color(NamedTextColor.DARK_GREEN)),
LOAD(Component.text("Loads all regions from file").color(NamedTextColor.DARK_AQUA));


private final Component info;
Expand Down

0 comments on commit 8ef64c0

Please sign in to comment.