diff options
author | Justin Clarke Casey | 2008-05-22 22:21:58 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-05-22 22:21:58 +0000 |
commit | 0c94da830557fe17f2ff40b04031255375397717 (patch) | |
tree | c6512aa672c2123d035dd7a687e682af240c47b6 /OpenSim/Region/Environment/Scenes/SceneManager.cs | |
parent | * Add (DEPRECATED) to load-xml/save-xml region console help (diff) | |
download | opensim-SC_OLD-0c94da830557fe17f2ff40b04031255375397717.zip opensim-SC_OLD-0c94da830557fe17f2ff40b04031255375397717.tar.gz opensim-SC_OLD-0c94da830557fe17f2ff40b04031255375397717.tar.bz2 opensim-SC_OLD-0c94da830557fe17f2ff40b04031255375397717.tar.xz |
* Plug in stubbed out archiver module
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneManager.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneManager.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneManager.cs b/OpenSim/Region/Environment/Scenes/SceneManager.cs index 68dfa2f..2baef9d 100644 --- a/OpenSim/Region/Environment/Scenes/SceneManager.cs +++ b/OpenSim/Region/Environment/Scenes/SceneManager.cs | |||
@@ -199,9 +199,9 @@ namespace OpenSim.Region.Environment.Scenes | |||
199 | /// as well as the details of the prims themselves. | 199 | /// as well as the details of the prims themselves. |
200 | /// </summary> | 200 | /// </summary> |
201 | /// <param name="filename"></param> | 201 | /// <param name="filename"></param> |
202 | public void SaveCurrentSceneToOar(string filename) | 202 | public void SaveCurrentSceneToArchive(string filename) |
203 | { | 203 | { |
204 | // TODO Nothing yet | 204 | CurrentOrFirstScene.LoadPrimsFromArchive(filename); |
205 | } | 205 | } |
206 | 206 | ||
207 | /// <summary> | 207 | /// <summary> |
@@ -209,9 +209,9 @@ namespace OpenSim.Region.Environment.Scenes | |||
209 | /// their assets to the asset service. | 209 | /// their assets to the asset service. |
210 | /// </summary> | 210 | /// </summary> |
211 | /// <param name="filename"></param> | 211 | /// <param name="filename"></param> |
212 | public void LoadCurrentSceneFromOar(string filename) | 212 | public void LoadCurrentSceneFromArchive(string filename) |
213 | { | 213 | { |
214 | // TODO Nothing yet | 214 | CurrentOrFirstScene.SavePrimsToArchive(filename); |
215 | } | 215 | } |
216 | 216 | ||
217 | [Obsolete("TODO: Remove this warning by 0.7")] | 217 | [Obsolete("TODO: Remove this warning by 0.7")] |