From 87daf8e7ed6a234261b8d33d20772d50a1c08f49 Mon Sep 17 00:00:00 2001 From: sk89q Date: Tue, 12 Oct 2010 21:43:01 -0700 Subject: [PATCH] Fixed help for /editstack(air). --- src/WorldEdit.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/WorldEdit.java b/src/WorldEdit.java index bed8a1fa2..0fabd0353 100644 --- a/src/WorldEdit.java +++ b/src/WorldEdit.java @@ -77,15 +77,15 @@ public class WorldEdit { commands.put("/editsize", "Get size of selected region"); commands.put("/editset", "[ID] - Set all blocks inside region"); commands.put("/editoutline", "[ID] - Outline the region with blocks"); - commands.put("/editreplace", "[ID] - Replace all existing blocks inside region"); + commands.put("/editreplace", " [ToID] - Replace all existing blocks inside region"); commands.put("/editoverlay", "[ID] - Overlay the area one layer"); commands.put("/removeabove", " - Remove blocks above head"); commands.put("/removebelow", " - Remove blocks below position"); 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 selection"); - commands.put("/editstackair", "[Dir] - Stacks the selection (with air)"); + commands.put("/editstack", " - Stacks the selection"); + commands.put("/editstackair", " - 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");