Update Add Command Config

- Add description
This commit is contained in:
Vahagn Tovmasian 2019-10-21 20:20:22 -07:00 committed by GitHub
parent 86e0404728
commit b8167c121c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";
}
}
}