mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 18:25:33 +08:00
Applied patch from mirceakitsune to fix #502 (lower land does the same as raise land)
This commit is contained in:
@@ -123,7 +123,7 @@ namespace libTerrain
|
||||
z -= ((x - rx)*(x - rx)) + ((y - ry)*(y - ry));
|
||||
|
||||
if (z > 0.0)
|
||||
Set(x, y, map[x, y] + (z * amount));
|
||||
Set(x, y, map[x, y] - (z * amount));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user