Update ChooseCommandConfig.java

This commit is contained in:
Vahagn Tovmasian 2019-10-21 20:30:46 -07:00 committed by GitHub
parent 3c90931a5a
commit 8ba54720b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,13 +2,13 @@ package com.projectkorra.projectkorra.configuration.configs.commands;
public class ChooseCommandConfig extends CommandConfig {
public final String PlayerNotFound = "";
public final String InvalidElement = "";
public final String OnCooldown = "";
public final String SuccessfullyChosen_Other = "";
public final String SuccessfullyChosen = "";
public final String SuccessfullyChosenVowel_Other = "";
public final String SuccessfullyChosenVowel = "";
public final String PlayerNotFound = "Error: Player not found!";
public final String InvalidElement = "Error: Invalid element!";
public final String OnCooldown = "You must wait %cooldown% before changing your element.";
public final String SuccessfullyChosen_Other = "{target} is now a {element}.";
public final String SuccessfullyChosen = "You are now a {element}.";
public final String SuccessfullyChosenVowel_Other = "{target} is now an {element}.";
public final String SuccessfullyChosenVowel = "You are now an {element}.";
public ChooseCommandConfig() {
super("");