* Added new "terrain add" command.

afrisby
Adam Frisby 2007-08-02 20:07:35 +00:00
parent 5e83ef21ad
commit fcafbc9a4a
1 changed files with 5 additions and 0 deletions

View File

@ -352,6 +352,11 @@ namespace OpenSim.Region.Terrain
tainted++;
break;
case "add":
heightmap += Convert.ToDouble(args[1]);
tainted++;
break;
case "multiply":
heightmap *= Convert.ToDouble(args[1]);
tainted++;