diff --git a/OpenSim/Region/CoreModules/World/Terrain/FloodBrushes/SmoothArea.cs b/OpenSim/Region/CoreModules/World/Terrain/FloodBrushes/SmoothArea.cs index 0e130967ce..3e6271250b 100644 --- a/OpenSim/Region/CoreModules/World/Terrain/FloodBrushes/SmoothArea.cs +++ b/OpenSim/Region/CoreModules/World/Terrain/FloodBrushes/SmoothArea.cs @@ -64,7 +64,7 @@ namespace OpenSim.Region.CoreModules.World.Terrain.FloodBrushes { if (n >= 0 && n < map.Width) { - for (int l = y - sy; l < y + sy; ++l) + for (int l = y - sy; l <= y + sy; ++l) { if (l >= 0 && l < map.Height) {