From c2da8cdd4ba1eadf5c8e98a554c05158ec0a116a Mon Sep 17 00:00:00 2001 From: destro174 <40720638+destro174@users.noreply.github.com> Date: Sat, 5 Mar 2022 11:29:58 +0100 Subject: [PATCH] Remove legacy codes in config --- .../GriefPrevention/alttd/config/Config.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/main/java/me/ryanhamshire/GriefPrevention/alttd/config/Config.java b/src/main/java/me/ryanhamshire/GriefPrevention/alttd/config/Config.java index de3e2f7..c876c9b 100644 --- a/src/main/java/me/ryanhamshire/GriefPrevention/alttd/config/Config.java +++ b/src/main/java/me/ryanhamshire/GriefPrevention/alttd/config/Config.java @@ -175,15 +175,15 @@ public class Config extends AbstractConfig { PASSWORD = config.getString("database.password", PASSWORD); } - public static String PlayerNotSpecified = "&cYou must specify a player. &7/{COMMAND} "; - public static String PlayerOffline = "&cThere isn't anyone online with &f\"{INPUT}\" &cin their name!"; - public static String CannotKickSelf = "&cYou cannot kick yourself!"; - public static String TargetNotInClaim = "&c{TARGET} is not inside of any claims that you control!"; - public static String CannotKickTrustedTarget = "&c{TARGET} has trust in the claims they're in, therefore they cannot be kicked!"; - public static String CannotKickExemptTarget = "&c{TARGET} cannot be kicked from claims."; - public static String KickSuccess = "&a{TARGET} was successfully kicked from the claim!"; - public static String NoSafeLocation = "&cKick Unsuccessful... No Safe Location Available!"; // send to spawn? - public static String KickedFromClaim = "{PLAYER} &ehas kicked you out of {CLAIM_OWNER}'s claim!"; + public static String PlayerNotSpecified = "You must specify a player."; + public static String PlayerOffline = "There isn't anyone online with {INPUT} in their name!"; + public static String CannotKickSelf = "You cannot kick yourself!"; + public static String TargetNotInClaim = "{TARGET} is not inside of any claims that you control!"; + public static String CannotKickTrustedTarget = "{TARGET} has trust in the claims they're in, therefore they cannot be kicked!"; + public static String CannotKickExemptTarget = "{TARGET} cannot be kicked from claims."; + public static String KickSuccess = "{TARGET} was successfully kicked from the claim!"; + public static String NoSafeLocation = "Kick Unsuccessful... No Safe Location Available!"; // send to spawn? + public static String KickedFromClaim = "{PLAYER} has kicked you out of {CLAIM_OWNER}'s claim!"; private static void kickFromClaimMessages() { PlayerNotSpecified = config.getString("kickfromclaim.PlayerNotSpecified", PlayerNotSpecified); PlayerOffline = config.getString("kickfromclaim.PlayerOffline", PlayerOffline);