Reapply "Fix SmoothArea to be uniform again"

This reverts commit 1d92dee88c.
This commit is contained in:
lickx
2025-05-05 02:37:00 +02:00
parent 67bb7ab857
commit 06c1c683e5

View File

@@ -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)
{