diff --git a/src/com/projectkorra/projectkorra/configuration/configs/commands/AddCommandConfig.java b/src/com/projectkorra/projectkorra/configuration/configs/commands/AddCommandConfig.java index 14347513..0308e13c 100644 --- a/src/com/projectkorra/projectkorra/configuration/configs/commands/AddCommandConfig.java +++ b/src/com/projectkorra/projectkorra/configuration/configs/commands/AddCommandConfig.java @@ -2,20 +2,20 @@ package com.projectkorra.projectkorra.configuration.configs.commands; public class AddCommandConfig extends CommandConfig { - public final String PlayerNotFound = ""; - public final String InvalidElement = ""; - public final String SuccessfullyAdded_Other = ""; - public final String SuccessfullyAdded = ""; - public final String SuccessfullyAddedVowel_Other = ""; - public final String SuccessfullyAddedVowel = ""; - public final String SuccessfullyAddedAll_Other = ""; - public final String SuccessfullyAddedAll = ""; - public final String AlreadyHasElement_Other = ""; - public final String AlreadyHasElement = ""; - public final String AlreadyHasSubElement_Other = ""; - public final String AlreadyHasSubElement = ""; - public final String AlreadyHasAllElements_Other = ""; - public final String AlreadyHasAllElements = ""; + public final String PlayerNotFound = "Error: Player not found!"; + public final String InvalidElement = "Error: Invalid element!"; + public final String SuccessfullyAdded_Other = "{target} is now also a {element}."; + public final String SuccessfullyAdded = "You are now also a {element}."; + public final String SuccessfullyAddedVowel_Other = "{target} is now also an {element}."; + public final String SuccessfullyAddedVowel = "You are now also an {element}."; + public final String SuccessfullyAddedAll_Other = "{target} now also has: "; + public final String SuccessfullyAddedAll = "You now also have: "; + public final String AlreadyHasElement_Other = "Error: Target already has element!"; + public final String AlreadyHasElement = "Error: You already have that element!"; + public final String AlreadyHasSubElement_Other = "Error: Target already has that subelement!"; + public final String AlreadyHasSubElement = "Error: You already have that subelement!"; + public final String AlreadyHasAllElements_Other = "Error: Already has all elements!"; + public final String AlreadyHasAllElements = "Error: Already has all elements!"; public AddCommandConfig() { super(""); @@ -26,4 +26,4 @@ public class AddCommandConfig extends CommandConfig { return "Add"; } -} \ No newline at end of file +}