From d5f5024127d78ac400c40e2f1fb4aea81f30fd6d Mon Sep 17 00:00:00 2001 From: sk89q Date: Wed, 24 Nov 2010 11:15:50 -0800 Subject: [PATCH] Shortened output message for //smooth. --- src/WorldEditListener.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/WorldEditListener.java b/src/WorldEditListener.java index 697e0b15e..c1fcd53cc 100755 --- a/src/WorldEditListener.java +++ b/src/WorldEditListener.java @@ -166,7 +166,7 @@ public class WorldEditListener extends PluginListener { commands.put("/butcher", " - Kill nearby mobs"); commands.put("//use", "[SnapshotID] - Use a particular snapshot"); commands.put("//restore", " - Restore a particular snapshot"); - commands.put("//smooth", " - Smooth an area's heightmap"); + commands.put("//smooth", " - Smooth an area's heightmap"); } /** @@ -950,7 +950,7 @@ public class WorldEditListener extends PluginListener { HeightMap heightMap = new HeightMap(editSession, session.getRegion()); HeightMapFilter filter = new HeightMapFilter(new GaussianKernel(5, 1.0)); int affected = heightMap.applyFilter(filter, iterations); - player.print("Terrain's heightmap has been smoothed. " + affected + " block(s) have been changed."); + player.print("Terrain's height map smoothed. " + affected + " block(s) changed."); return true;