diff options
author | Adam Frisby | 2008-03-31 21:05:22 +0000 |
---|---|---|
committer | Adam Frisby | 2008-03-31 21:05:22 +0000 |
commit | 15a1565bf8289062b80c34b202b025f0b0862c35 (patch) | |
tree | d7896a7cf74ea6a74abea8421a6c759b241896c0 | |
parent | * Make it a little clearer that the voice config options won't actually do an... (diff) | |
download | opensim-SC_OLD-15a1565bf8289062b80c34b202b025f0b0862c35.zip opensim-SC_OLD-15a1565bf8289062b80c34b202b025f0b0862c35.tar.gz opensim-SC_OLD-15a1565bf8289062b80c34b202b025f0b0862c35.tar.bz2 opensim-SC_OLD-15a1565bf8289062b80c34b202b025f0b0862c35.tar.xz |
* 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)
-rw-r--r-- | OpenSim/Region/Environment/Modules/Terrain/TerrainModule.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Modules/Terrain/TerrainModule.cs b/OpenSim/Region/Environment/Modules/Terrain/TerrainModule.cs index 3425822..88d7041 100644 --- a/OpenSim/Region/Environment/Modules/Terrain/TerrainModule.cs +++ b/OpenSim/Region/Environment/Modules/Terrain/TerrainModule.cs | |||
@@ -222,6 +222,7 @@ namespace OpenSim.Region.Environment.Modules.Terrain | |||
222 | private void InterfaceLoadFile(Object[] args) | 222 | private void InterfaceLoadFile(Object[] args) |
223 | { | 223 | { |
224 | LoadFromFile((string)args[0]); | 224 | LoadFromFile((string)args[0]); |
225 | SendUpdatedLayerData(); | ||
225 | } | 226 | } |
226 | 227 | ||
227 | private void InterfaceLoadTileFile(Object[] args) | 228 | private void InterfaceLoadTileFile(Object[] args) |
@@ -231,6 +232,7 @@ namespace OpenSim.Region.Environment.Modules.Terrain | |||
231 | (int)args[2], | 232 | (int)args[2], |
232 | (int)args[3], | 233 | (int)args[3], |
233 | (int)args[4]); | 234 | (int)args[4]); |
235 | SendUpdatedLayerData(); | ||
234 | } | 236 | } |
235 | 237 | ||
236 | private void InterfaceSaveFile(Object[] args) | 238 | private void InterfaceSaveFile(Object[] args) |