Update ClearCommandConfig.java

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

View file

@ -2,11 +2,11 @@ package com.projectkorra.projectkorra.configuration.configs.commands;
public class ClearCommandConfig extends CommandConfig {
public final String CantEditBinds = "";
public final String Cleared = "";
public final String WrongNumber = "";
public final String ClearedSlot = "";
public final String AlreadyEmpty = "";
public final String CantEditBinds = "Error: You can't edit your binds right now!";
public final String Cleared = "Your bound abilities have been cleared";
public final String WrongNumber = "Error: Slot number must be an integer between 1-9";
public final String ClearedSlot = "You have cleared slot #{slot}.";
public final String AlreadyEmpty = "That slot is already empty.";
public ClearCommandConfig() {
super("");
@ -17,4 +17,4 @@ public class ClearCommandConfig extends CommandConfig {
return "Clear";
}
}
}