From de4acaa8c772a2edf4666ff741874f40f84724d9 Mon Sep 17 00:00:00 2001 From: Evenprime Date: Mon, 19 Sep 2011 20:31:31 +0200 Subject: [PATCH] Adapted name of nofall action to better reflect what it does (deal damage) --- src/cc/co/evenprime/bukkit/nocheat/DefaultConfiguration.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cc/co/evenprime/bukkit/nocheat/DefaultConfiguration.java b/src/cc/co/evenprime/bukkit/nocheat/DefaultConfiguration.java index a8e454ee..4f7a09bf 100644 --- a/src/cc/co/evenprime/bukkit/nocheat/DefaultConfiguration.java +++ b/src/cc/co/evenprime/bukkit/nocheat/DefaultConfiguration.java @@ -86,7 +86,7 @@ public class DefaultConfiguration { runflyNode.add(new IntegerOption("nofallmultiplier", 200)); ActionListOption nofallactions = new ActionListOption("nofallactions"); runflyNode.add(nofallactions); - nofallactions.add(0, "nofallLog nofallCancel"); + nofallactions.add(0, "nofallLog nofallDamage"); runflyNode.add(new BooleanOption("allowlimitedflying", false, false)); @@ -347,7 +347,7 @@ public class DefaultConfiguration { w(w, "special blockplaceCancel 0 0"); w(w, "special interactCancel 0 0"); w(w, "special spamCancel 0 0"); - w(w, "special nofallCancel 0 0"); + w(w, "special nofallDamage 0 0"); w(w, ""); w(w, "# CONSOLECOMMAND Actions: They will execute a command as if it were typed into the console."); w(w, "# - They start with the word 'consolecommand'");