From eb70ac391aba3bd717512775b77f87a9a1e35533 Mon Sep 17 00:00:00 2001 From: sk89q Date: Mon, 11 Oct 2010 01:29:51 -0700 Subject: [PATCH] Fixed the help for /editstack and /editstackair. --- src/WorldEdit.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/WorldEdit.java b/src/WorldEdit.java index c03c7a7f1..95e24f79b 100644 --- a/src/WorldEdit.java +++ b/src/WorldEdit.java @@ -68,8 +68,8 @@ public class WorldEdit extends Plugin { commands.put("/editcopy", "Copies the currently selected region"); commands.put("/editpaste", "Pastes the clipboard"); commands.put("/editpasteair", "Pastes the clipboard (with air)"); - commands.put("/editstack", "[Dir] - Stacks the clipboard"); - commands.put("/editstackair", "[Dir] - Stacks the clipboard (with air)"); + commands.put("/editstack", "[Dir] - Stacks the selection"); + commands.put("/editstackair", "[Dir] - Stacks the selection (with air)"); commands.put("/editload", "[Filename] - Load .schematic into clipboard"); commands.put("/editsave", "[Filename] - Save clipboard to .schematic"); commands.put("/editfill", "[ID] [Radius] - Fill a hole");