From ad102ab7a90fffb4f679f8a32283a049c4ac3df8 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Fri, 23 Jul 2021 11:27:14 +0100 Subject: [PATCH] clipboard brush is supposed to be -o not -p --- .../main/java/com/sk89q/worldedit/command/BrushCommands.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/command/BrushCommands.java b/worldedit-core/src/main/java/com/sk89q/worldedit/command/BrushCommands.java index a401a4996..9fbea73d9 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/command/BrushCommands.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/command/BrushCommands.java @@ -727,7 +727,7 @@ public class BrushCommands { name = "clipboard", desc = "@Deprecated use instead: `/br copypaste`)", descFooter = "Choose the clipboard brush.\n" - + "Without the -p flag, the paste will appear centered at the target location. " + + "Without the -o flag, the paste will appear centered at the target location. " + "With the flag, then the paste will appear relative to where you had " + "stood relative to the copied area when you copied it." ) @@ -736,7 +736,7 @@ public class BrushCommands { public void clipboardBrush(Player player, LocalSession session, @Switch(name = 'a', desc = "Don't paste air from the clipboard") boolean ignoreAir, - @Switch(name = 'p', desc = "Paste starting at the target location, instead of centering on it") + @Switch(name = 'o', desc = "Paste starting at the target location, instead of centering on it") boolean usingOrigin, @Switch(name = 'e', desc = "Paste entities if available") boolean pasteEntities,