From 35787cb8aa63ec5e2062844888455940a3b64f22 Mon Sep 17 00:00:00 2001 From: R00tB33rMan <36140389+R00tB33rMan@users.noreply.github.com> Date: Sat, 22 Apr 2023 23:13:58 +0000 Subject: [PATCH] /znpcs help does not exist --- .../znpcservers/configuration/ConfigurationValue.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/io/github/znetworkw/znpcservers/configuration/ConfigurationValue.java b/src/main/java/io/github/znetworkw/znpcservers/configuration/ConfigurationValue.java index 4e64dfb..ce96a3b 100644 --- a/src/main/java/io/github/znetworkw/znpcservers/configuration/ConfigurationValue.java +++ b/src/main/java/io/github/znetworkw/znpcservers/configuration/ConfigurationValue.java @@ -24,12 +24,12 @@ public enum ConfigurationValue { CHECK_FOR_UPDATES("config", true, Boolean.class), NO_PERMISSION("messages", "&cYou do not have permission to execute this command.", String.class), SUCCESS("messages", "&aSuccess!", String.class), - INCORRECT_USAGE("messages", "&cThe arguments you specified are invalid. Type &f/znpcs help&c for examples.", String.class), + INCORRECT_USAGE("messages", "&cThe arguments you specified are invalid. Type &f/znpcs&c for examples.", String.class), COMMAND_NOT_FOUND("messages", "&cThe command you specified does not exist!", String.class), COMMAND_ERROR("messages", "&cAn error occurred when executing this command. See console for more information.", String.class), INVALID_NUMBER("messages", "&cThe ID you have specified is invalid. Please use positive integers only!", String.class), NPC_NOT_FOUND("messages", "&cNo NPCs could be found with this ID!", String.class), - TOO_FEW_ARGUMENTS("messages", "&cThis command does not contain enough arguments. Type &f/znpcs help&c or view our documentation for a list/examples of existing arguments.", String.class), + TOO_FEW_ARGUMENTS("messages", "&cThis command does not contain enough arguments. Type &f/znpcs&c or view our documentation for a list/examples of existing arguments.", String.class), PATH_START("messages", "&aSuccess! Move to create a path for your NPC. When finished, type &f/znpcs path exit&c to exit path creation.", String.class), EXIT_PATH("messages", "&cYou have exited path creation.", String.class), PATH_FOUND("messages", "&cThere is already a path with this name.", String.class), @@ -37,8 +37,8 @@ public enum ConfigurationValue { NO_PATH_FOUND("messages", "&cThe path you have specified does not exist.", String.class), NO_SKIN_FOUND("messages", "&cThe skin username/URL you have specified does not exist or is invalid.", String.class), NO_NPC_FOUND("messages", "&cThe NPC you have specified does not exist.", String.class), - NO_ACTION_FOUND("messages", "&cThis action does not exist! Type &f/znpcs help&c or view our documentation for a list/examples of existing action types.", String.class), - METHOD_NOT_FOUND("messages", "&cThis method does not exist! Type &f/znpcs help&c or view our documentation for a list/examples of existing methods.", String.class), + NO_ACTION_FOUND("messages", "&cThis action does not exist! Type &f/znpcs&c or view our documentation for a list/examples of existing action types.", String.class), + METHOD_NOT_FOUND("messages", "&cThis method does not exist! Type &f/znpcs&c or view our documentation for a list/examples of existing methods.", String.class), INVALID_NAME_LENGTH("messages", "&cThe name you specified either too short or long. Please enter a positive integer of (3 to 16) characters.", String.class), UNSUPPORTED_ENTITY("messages", "&cThis entity type not available in your current server version.", String.class), PATH_SET_INCORRECT_USAGE("messages", "&eUsage: &aset ", String.class),