Skip to content

Commit

Permalink
Update default messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ryderbelserion committed Feb 11, 2024
1 parent b24be3c commit 23dae4b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Expand Up @@ -157,19 +157,19 @@ public void registerComments(CommentsConfiguration conf) {
public static final Property<List<String>> admin_help = newListProperty("Messages.Admin-Help", List.of(
"&c&lCrazy Crates Admin Help",
"",
"&6/cc additem <crate> <prize> &7- &eAdd items in-game to a prize in a crate.",
"&6/cc preview <crate> [player] &7- &eOpens the preview of a crate for a player.",
"&6/cc additem <crate_name> <prize_number> <chance> [tier] &7- &eAdd items in-game to a prize in a crate including Cosmic/Casino.",
"&6/cc preview <crate_name> [player] &7- &eOpens the preview of a crate for a player.",
"&6/cc list &7- &eLists all crates.",
"&6/cc open <crate> &7- &eTries to open a crate for you if you have a key.",
"&6/cc open-others <crate> [player] &7- &eTries to open a crate for a player if they have a key.",
"&6/cc transfer <crate> [player] [amount &7- &eTransfers keys to players you chose.",
"&6/cc open <crate_name> &7- &eTries to open a crate for you if you have a key.",
"&6/cc open-others <crate_name> [player] &7- &eTries to open a crate for a player if they have a key.",
"&6/cc transfer <crate_name> [player] [amount &7- &eTransfers keys to players you chose.",
"&6/cc debug &7- &eDebugs crates",
"&6/cc admin &7- &eShows admin menu",
"&6/cc forceopen <crate> [player] &7- &eOpens a crate for a player for free.",
"&6/cc mass-open <crate> <physical/virtual> [amount] &7- &eMass opens a set amount of crates.",
"&6/cc forceopen <crate_name> [player] &7- &eOpens a crate for a player for free.",
"&6/cc mass-open <crate_name> <physical/virtual> [amount] &7- &eMass opens a set amount of crates.",
"&6/cc tp <location> &7- &eTeleport to a Crate.",
"&6/cc give <physical/virtual> <crate> [amount] [player] &7- &eAllows you to take keys from a player.",
"&6/cc set <crate> &7- &eSet the block you are looking at as a crate.",
"&6/cc give <physical/virtual> <crate_name> [amount] [player] &7- &eAllows you to take keys from a player.",
"&6/cc set <crate_name> &7- &eSet the block you are looking at as a crate.",
"&6/cc set Menu &7- &eSet the block you are looking at to open the /cc menu.",
"&6/cc reload &7- &eReloads the config/data files.",
"&6/cc set1/set2 &7- &eSets position &c#1 &eor &c#2 for when making a new schematic for QuadCrates.",
Expand Down
Expand Up @@ -16,7 +16,7 @@ private String getContext(String subCommand, String commandOrder) {
case "transfer" -> correctUsage = commandOrder + "<crate-name> <player-name> <amount>";
case "debug", "open", "set" -> correctUsage = commandOrder + "<crate-name>";
case "tp" -> correctUsage = commandOrder + "<id>";
case "additem" -> correctUsage = commandOrder + "<crate-name> <prize-number>";
case "additem" -> correctUsage = commandOrder + "<crate-name> <prize-number> <chance> [tier]";
case "preview", "open-others", "forceopen" -> correctUsage = commandOrder + "<crate-name> <player-name>";
case "mass-open" -> correctUsage = commandOrder + "<crate-name> <key-type> <amount>";
case "give-random" -> correctUsage = commandOrder + "<key-type> <amount> <player-name>";
Expand Down

0 comments on commit 23dae4b

Please sign in to comment.