From ff2115ca318ca7a654bfdef5cdd62c7ce78bfb28 Mon Sep 17 00:00:00 2001 From: sk89q Date: Sun, 23 Jan 2011 10:11:12 -0800 Subject: [PATCH] Improved a few error messages. --- src/com/sk89q/worldedit/WorldEditController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/sk89q/worldedit/WorldEditController.java b/src/com/sk89q/worldedit/WorldEditController.java index bf2918f0d..97075b971 100644 --- a/src/com/sk89q/worldedit/WorldEditController.java +++ b/src/com/sk89q/worldedit/WorldEditController.java @@ -2101,7 +2101,7 @@ public class WorldEditController { } catch (NumberFormatException e) { player.printError("Number expected; string given."); } catch (IncompleteRegionException e) { - player.printError("The edit region has not been fully defined."); + player.printError("Make a region selection first."); } catch (UnknownItemException e) { player.printError("Block name '" + e.getID() + "' was not recognized."); } catch (InvalidItemException e) { @@ -2118,7 +2118,7 @@ public class WorldEditController { } catch (InsufficientArgumentsException e) { player.printError(e.getMessage()); } catch (EmptyClipboardException e) { - player.printError("Your clipboard is empty."); + player.printError("Your clipboard is empty. Use //copy first."); } catch (WorldEditException e) { player.printError(e.getMessage()); } catch (Throwable excp) {