From 17762f5ae7f5dd1c088cf148f93e5f0e0b175f8b Mon Sep 17 00:00:00 2001 From: Jesse Boyd Date: Wed, 9 Nov 2016 00:13:46 +1100 Subject: [PATCH] Tweak delete message --- .../java/com/intellectualcrafters/plot/commands/Delete.java | 2 +- Core/src/main/java/com/intellectualcrafters/plot/config/C.java | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Core/src/main/java/com/intellectualcrafters/plot/commands/Delete.java b/Core/src/main/java/com/intellectualcrafters/plot/commands/Delete.java index e3f9b8da0..9ebc7a058 100644 --- a/Core/src/main/java/com/intellectualcrafters/plot/commands/Delete.java +++ b/Core/src/main/java/com/intellectualcrafters/plot/commands/Delete.java @@ -62,7 +62,7 @@ public class Delete extends SubCommand { sendMessage(player, C.ADDED_BALANCE, String.valueOf(value)); } } - MainUtil.sendMessage(player, C.CLEARING_DONE, System.currentTimeMillis() - start); + MainUtil.sendMessage(player, C.DELETING_DONE, System.currentTimeMillis() - start); } }); if (result) { diff --git a/Core/src/main/java/com/intellectualcrafters/plot/config/C.java b/Core/src/main/java/com/intellectualcrafters/plot/config/C.java index 460056740..a3efbe71c 100644 --- a/Core/src/main/java/com/intellectualcrafters/plot/config/C.java +++ b/Core/src/main/java/com/intellectualcrafters/plot/config/C.java @@ -595,6 +595,7 @@ public enum C { */ CLEARING_PLOT("$2Clearing plot async.", "Working"), CLEARING_DONE("$4Clear completed! Took %sms.", "Working"), + DELETING_DONE("$4Delete completed! Took %sms.", "Working"), /* * Claiming */