From 54d27d9b653f37ddde4689e0ab05fa1259074691 Mon Sep 17 00:00:00 2001 From: Vahagn Tovmasian Date: Mon, 21 Oct 2019 20:32:28 -0700 Subject: [PATCH] Update ClearCommandConfig.java --- .../configs/commands/ClearCommandConfig.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/com/projectkorra/projectkorra/configuration/configs/commands/ClearCommandConfig.java b/src/com/projectkorra/projectkorra/configuration/configs/commands/ClearCommandConfig.java index 804b263c..703ca522 100644 --- a/src/com/projectkorra/projectkorra/configuration/configs/commands/ClearCommandConfig.java +++ b/src/com/projectkorra/projectkorra/configuration/configs/commands/ClearCommandConfig.java @@ -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"; } -} \ No newline at end of file +}