From e767dd98881fc75d1bd5ce68a388adf3605cff66 Mon Sep 17 00:00:00 2001 From: wizjany Date: Wed, 5 Jun 2019 12:31:12 -0400 Subject: [PATCH] Missing perm. --- .../src/main/java/com/sk89q/worldedit/LocalConfiguration.java | 4 ++-- .../sk89q/worldedit/internal/util/DocumentationPrinter.java | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/LocalConfiguration.java b/worldedit-core/src/main/java/com/sk89q/worldedit/LocalConfiguration.java index 08594fcfb..d814bf48b 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/LocalConfiguration.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/LocalConfiguration.java @@ -54,7 +54,7 @@ public abstract class LocalConfiguration { public boolean logCommands = false; public String logFile = ""; public String logFormat = LogFormat.DEFAULT_FORMAT; - public boolean registerHelp = true; // what is the point of this, it's not even used + public boolean registerHelp = true; // unused public String wandItem = "minecraft:wooden_axe"; public boolean superPickaxeDrop = true; public boolean superPickaxeManyDrop = true; @@ -70,7 +70,7 @@ public abstract class LocalConfiguration { public Set allowedDataCycleBlocks = new HashSet<>(); public String saveDir = "schematics"; public String scriptsDir = "craftscripts"; - public boolean showHelpInfo = true; + public boolean showHelpInfo = true; // unused public int butcherDefaultRadius = -1; public int butcherMaxRadius = -1; public boolean allowSymlinks = false; diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/internal/util/DocumentationPrinter.java b/worldedit-core/src/main/java/com/sk89q/worldedit/internal/util/DocumentationPrinter.java index 8b29bb51f..6352451f9 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/internal/util/DocumentationPrinter.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/internal/util/DocumentationPrinter.java @@ -368,10 +368,11 @@ public final class DocumentationPrinter { " worldedit.navigation.jumpto.tool,\"Allows usage of the navigation wand's ``/jumpto`` shortcut (left click).\"\n" + " worldedit.navigation.thru.tool,\"Allows usage of the navigation wand's ``/thru`` shortcut (right click).\"\n" + " worldedit.anyblock,\"Allows usage of blocks in the :doc:`disallowed-blocks ` config option.\"\n" + - " worldedit.limit.unrestricted,\"Allows setting the limit via the ``//limit`` :doc:`command ` higher than the maximum in the :doc:`configuration `.\"\n" + + " worldedit.limit.unrestricted,\"Allows setting the limit via the ``//limit`` :doc:`command ` higher than the maximum in the :doc:`configuration `, as well as other limit bypasses.\"\n" + " worldedit.timeout.unrestricted,\"Allows setting the calculation timeout via the ``//timeout`` :doc:`command ` higher than the maximum in the :doc:`configuration `.\"\n" + " worldedit.inventory.unrestricted,\"Override the ``use-inventory`` option if enabled in the :doc:`configuration `.\"\n" + " worldedit.override.bedrock,\"Allows breaking of bedrock with the super-pickaxe tool.\"\n" + + " worldedit.override.data-cycler,\"Allows cycling non-whitelisted blocks with the data cycler tool.\"\n" + " worldedit.setnbt,\"Allows setting `extra data `_ on blocks (such as signs, chests, etc).\"\n" + " worldedit.report.pastebin,\"Allows uploading report files to pastebin automatically for the ``/worldedit report`` :doc:`command `.\""); }