From 8e16acde1ddc989af1b26f281cd7869a7045bb52 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Fri, 23 Jul 2021 09:54:30 +0100 Subject: [PATCH] Fix error in clipboard brush switches --- .../main/java/com/sk89q/worldedit/command/BrushCommands.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 fed32c51f..a401a4996 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 @@ -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 = 'o', desc = "Paste starting at the target location, instead of centering on it") + @Switch(name = 'p', desc = "Paste starting at the target location, instead of centering on it") boolean usingOrigin, @Switch(name = 'e', desc = "Paste entities if available") boolean pasteEntities,