From e320833961734c68a9d783bc9e3e77458e4c54d3 Mon Sep 17 00:00:00 2001 From: Octavia Togami Date: Sat, 17 Oct 2020 13:02:51 -0700 Subject: [PATCH] Use /tool in /toggleeditwand description --- .../com/sk89q/worldedit/command/SelectionCommands.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/command/SelectionCommands.java b/worldedit-core/src/main/java/com/sk89q/worldedit/command/SelectionCommands.java index 085cd6ede..e2b5f0c04 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/command/SelectionCommands.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/command/SelectionCommands.java @@ -311,16 +311,16 @@ public void wand(Player player, LocalSession session, @Command( name = "toggleeditwand", - desc = "Remind the user that the wand is now a tool and can be unbound with /none." + desc = "Remind the user that the wand is now a tool and can be unbound with /tool none." ) @CommandPermissions("worldedit.wand.toggle") public void toggleWand(Player player) { player.printInfo(TextComponent.of("The selection wand is now a normal tool. You can disable it with ") - .append(TextComponent.of("/none", TextColor.AQUA).clickEvent( - ClickEvent.of(ClickEvent.Action.RUN_COMMAND, "/none"))) + .append(TextComponent.of("/tool none", TextColor.AQUA).clickEvent( + ClickEvent.of(ClickEvent.Action.RUN_COMMAND, "/tool none"))) .append(TextComponent.of(" and rebind it to any item with ")) - .append(TextComponent.of("//selwand", TextColor.AQUA).clickEvent( - ClickEvent.of(ClickEvent.Action.RUN_COMMAND, "//selwand"))) + .append(TextComponent.of("/tool selwand", TextColor.AQUA).clickEvent( + ClickEvent.of(ClickEvent.Action.RUN_COMMAND, "/tool selwand"))) .append(TextComponent.of(" or get a new wand with ")) .append(TextComponent.of("//wand", TextColor.AQUA).clickEvent( ClickEvent.of(ClickEvent.Action.RUN_COMMAND, "//wand"))));