Update CopyCommandConfig.java

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

View file

@ -2,10 +2,10 @@ package com.projectkorra.projectkorra.configuration.configs.commands;
public class CopyCommandConfig extends CommandConfig { public class CopyCommandConfig extends CommandConfig {
public final String PlayerNotFound = ""; public final String PlayerNotFound = "Error: Player not found!";
public final String SuccessfullyCopied = ""; public final String SuccessfullyCopied = "Your binds have been set to match {target}'s!";
public final String SuccessfullyCopied_Other = ""; public final String SuccessfullyCopied_Other = "{target1}'s binds have been set to match {target2}'s.";
public final String FailedToBindAll = ""; public final String FailedToBindAll = "Error: Failed to copy and bind all abilities";
public CopyCommandConfig() { public CopyCommandConfig() {
super(""); super("");
@ -16,4 +16,4 @@ public class CopyCommandConfig extends CommandConfig {
return "Copy"; return "Copy";
} }
} }