aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Terrain/PaintBrushes/WeatherSphere.cs
diff options
context:
space:
mode:
authorUbitUmarov2015-08-29 05:28:13 +0100
committerUbitUmarov2015-08-29 05:28:13 +0100
commit207dd6da482719b688dc43b78e455cd3c14276e5 (patch)
tree20f47465d6064a31b6a3cbc28a17c94a7c4d3dad /OpenSim/Region/CoreModules/World/Terrain/PaintBrushes/WeatherSphere.cs
parent fix NeighborRegions code (diff)
downloadopensim-SC_OLD-207dd6da482719b688dc43b78e455cd3c14276e5.zip
opensim-SC_OLD-207dd6da482719b688dc43b78e455cd3c14276e5.tar.gz
opensim-SC_OLD-207dd6da482719b688dc43b78e455cd3c14276e5.tar.bz2
opensim-SC_OLD-207dd6da482719b688dc43b78e455cd3c14276e5.tar.xz
fix some effects ranges
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/CoreModules/World/Terrain/PaintBrushes/WeatherSphere.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Terrain/PaintBrushes/WeatherSphere.cs b/OpenSim/Region/CoreModules/World/Terrain/PaintBrushes/WeatherSphere.cs
index c9facc7..f52fe07 100644
--- a/OpenSim/Region/CoreModules/World/Terrain/PaintBrushes/WeatherSphere.cs
+++ b/OpenSim/Region/CoreModules/World/Terrain/PaintBrushes/WeatherSphere.cs
@@ -157,7 +157,7 @@ namespace OpenSim.Region.CoreModules.World.Terrain.PaintBrushes
157 157
158 for (x = startX; x <= endX; x++) 158 for (x = startX; x <= endX; x++)
159 { 159 {
160 for (y = startY; y < endY; y++) 160 for (y = startY; y <= endY; y++)
161 { 161 {
162 if (!mask[x,y]) 162 if (!mask[x,y])
163 continue; 163 continue;