From d475e5159af4535d5a4225628429b12abc1a52f9 Mon Sep 17 00:00:00 2001 From: dordsor whitwell Date: Wed, 30 Aug 2017 11:30:20 +0100 Subject: [PATCH] Fix catenary brush help --- .../java/com/sk89q/worldedit/command/BrushCommands.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/com/sk89q/worldedit/command/BrushCommands.java b/core/src/main/java/com/sk89q/worldedit/command/BrushCommands.java index ae7cfb53..8b868c7f 100644 --- a/core/src/main/java/com/sk89q/worldedit/command/BrushCommands.java +++ b/core/src/main/java/com/sk89q/worldedit/command/BrushCommands.java @@ -251,10 +251,10 @@ public class BrushCommands extends MethodCommands { @Command( aliases = {"catenary", "cat", "gravityline", "saggedline"}, - usage = " [length-factor=1.2] [size=0]", + usage = " [lengthFactor=1.2] [size=0]", desc = "Create a hanging line between two points", help = "Create a hanging line between two points.\n" + - "The length-factor controls how long the line is\n" + + "The lengthFactor controls how long the line is\n" + "The -h flag creates only a shell\n" + "The -s flag selects the clicked point after drawing\n", min = 1, @@ -866,4 +866,4 @@ public class BrushCommands extends MethodCommands { public static Class inject() { return BrushCommands.class; } -} \ No newline at end of file +}