Revert "Fix SmoothArea to be uniform again"

This reverts commit b1a2773de9.
This commit is contained in:
lickx
2025-04-24 08:13:50 +02:00
parent 7a1c2fe908
commit 9a1a56bec8

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