* Fix for terrain issue whereby loading or manipulating a terrain item from the console would not cause the terrain to be saved to the Scene. (Mantis #845)

0.6.0-stable
Adam Frisby 2008-03-31 21:05:22 +00:00
parent 44a5f6647d
commit 15a1565bf8
1 changed files with 2 additions and 0 deletions

View File

@ -222,6 +222,7 @@ namespace OpenSim.Region.Environment.Modules.Terrain
private void InterfaceLoadFile(Object[] args)
{
LoadFromFile((string)args[0]);
SendUpdatedLayerData();
}
private void InterfaceLoadTileFile(Object[] args)
@ -231,6 +232,7 @@ namespace OpenSim.Region.Environment.Modules.Terrain
(int)args[2],
(int)args[3],
(int)args[4]);
SendUpdatedLayerData();
}
private void InterfaceSaveFile(Object[] args)