* Added new "terrain add" command.

This commit is contained in:
Adam Frisby
2007-08-02 20:07:35 +00:00
parent 5e83ef21ad
commit fcafbc9a4a

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++;