From a2d443cb7542465a71fa098a455e0dd444e4c2e8 Mon Sep 17 00:00:00 2001 From: Evenprime Date: Fri, 4 Mar 2011 19:39:04 +0100 Subject: [PATCH] forgot to update command line feedback + version is now 0.6.3 --- src/cc/co/evenprime/bukkit/nocheat/NoCheatPlugin.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cc/co/evenprime/bukkit/nocheat/NoCheatPlugin.java b/src/cc/co/evenprime/bukkit/nocheat/NoCheatPlugin.java index 896c811d..5e97af7f 100644 --- a/src/cc/co/evenprime/bukkit/nocheat/NoCheatPlugin.java +++ b/src/cc/co/evenprime/bukkit/nocheat/NoCheatPlugin.java @@ -107,7 +107,8 @@ public class NoCheatPlugin extends JavaPlugin { String checks = (NoCheatConfiguration.movingCheckActive ? "moving ": "") + (NoCheatConfiguration.speedhackCheckActive ? "speedhack " : "") + (NoCheatConfiguration.airbuildCheckActive ? "airbuild " : "") + - (NoCheatConfiguration.dupebydeathCheckActive ? "dupebydeath " : ""); + (NoCheatConfiguration.dupebydeathCheckActive ? "dupebydeath " : "") + + (NoCheatConfiguration.bedteleportCheckActive ? "bedteleport " : ""); Logger.getLogger("Minecraft").info( "[NoCheatPlugin] version [" + pdfFile.getVersion() + "] is enabled with the following checks: "+checks); }