aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Terrain/PaintBrushes/SmoothSphere.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Terrain/PaintBrushes/SmoothSphere.cs')
-rw-r--r--OpenSim/Region/CoreModules/World/Terrain/PaintBrushes/SmoothSphere.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/World/Terrain/PaintBrushes/SmoothSphere.cs b/OpenSim/Region/CoreModules/World/Terrain/PaintBrushes/SmoothSphere.cs
index cc618fd..65dd0a6 100644
--- a/OpenSim/Region/CoreModules/World/Terrain/PaintBrushes/SmoothSphere.cs
+++ b/OpenSim/Region/CoreModules/World/Terrain/PaintBrushes/SmoothSphere.cs
@@ -50,7 +50,7 @@ namespace OpenSim.Region.CoreModules.World.Terrain.PaintBrushes
50 // compute delta map 50 // compute delta map
51 for (x = startX; x <= endX; x++) 51 for (x = startX; x <= endX; x++)
52 { 52 {
53 for (y = startY; y < endY; y++) 53 for (y = startY; y <= endY; y++)
54 { 54 {
55 if (!mask[x, y]) 55 if (!mask[x, y])
56 continue; 56 continue;
@@ -79,7 +79,7 @@ namespace OpenSim.Region.CoreModules.World.Terrain.PaintBrushes
79 // blend in map 79 // blend in map
80 for (x = startX; x <= endX; x++) 80 for (x = startX; x <= endX; x++)
81 { 81 {
82 for (y = startY; y < endY; y++) 82 for (y = startY; y <= endY; y++)
83 { 83 {
84 if (!mask[x, y]) 84 if (!mask[x, y])
85 continue; 85 continue;