mantis 8725: increase channeldigger smooth strength, tanks Datapanic

master
UbitUmarov 2020-07-10 20:14:14 +01:00
parent 82ccf57533
commit ebf5b69283
1 changed files with 3 additions and 1 deletions

View File

@ -64,7 +64,9 @@ namespace OpenSim.Region.CoreModules.World.Terrain.Effects
for (int i = 0; i < rounds; i++)
{
smoothFunction.FloodEffect(map, bitmap, -1f, 1.0f, 0, map.Width - 1, 0, map.Height - 1);
//mantis 8725
//smoothFunction.FloodEffect(map, bitmap, -1f, 1.0f, 0, map.Width - 1, 0, map.Height - 1);
smoothFunction.FloodEffect(map, bitmap, -1f, 110.0f, 0, map.Width - 1, 0, map.Height - 1);
}
}