Applied patch from mirceakitsune to fix #502 (lower land does the same as raise land)

ThreadPoolClientBranch
Jeff Ames 2008-02-09 10:41:36 +00:00
parent 07d0f558c4
commit f6e9b9404f
1 changed files with 1 additions and 1 deletions

View File

@ -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));
}
}
}