* 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)
parent
44a5f6647d
commit
15a1565bf8
|
@ -222,6 +222,7 @@ namespace OpenSim.Region.Environment.Modules.Terrain
|
||||||
private void InterfaceLoadFile(Object[] args)
|
private void InterfaceLoadFile(Object[] args)
|
||||||
{
|
{
|
||||||
LoadFromFile((string)args[0]);
|
LoadFromFile((string)args[0]);
|
||||||
|
SendUpdatedLayerData();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void InterfaceLoadTileFile(Object[] args)
|
private void InterfaceLoadTileFile(Object[] args)
|
||||||
|
@ -231,6 +232,7 @@ namespace OpenSim.Region.Environment.Modules.Terrain
|
||||||
(int)args[2],
|
(int)args[2],
|
||||||
(int)args[3],
|
(int)args[3],
|
||||||
(int)args[4]);
|
(int)args[4]);
|
||||||
|
SendUpdatedLayerData();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void InterfaceSaveFile(Object[] args)
|
private void InterfaceSaveFile(Object[] args)
|
||||||
|
|
Loading…
Reference in New Issue