diff options
author | Justin Clark-Casey (justincc) | 2012-08-03 23:49:34 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-08-03 23:49:34 +0100 |
commit | fb91ca6f1d3e61444005175d0a0d55025d15ad5b (patch) | |
tree | 4f469192c97afc63edd69ce97e8bbcab36ac6dc9 /OpenSim/Region | |
parent | Fix build break. (diff) | |
download | opensim-SC_OLD-fb91ca6f1d3e61444005175d0a0d55025d15ad5b.zip opensim-SC_OLD-fb91ca6f1d3e61444005175d0a0d55025d15ad5b.tar.gz opensim-SC_OLD-fb91ca6f1d3e61444005175d0a0d55025d15ad5b.tar.bz2 opensim-SC_OLD-fb91ca6f1d3e61444005175d0a0d55025d15ad5b.tar.xz |
Fix old regression that stopped saving parcel owner data in OARs.
This was working in 0.7.2 but was accidentally removed from 0.7.3.
The --publish option for "save oar" will now save oars stripped of parcel owner information as well as scene object info.
Please use the --publish option if you want to publish oars that may be later loaded by others to the same grid from which they were saved.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/CoreModules/World/Archiver/ArchiveWriteRequestExecution.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Archiver/ArchiveWriteRequestExecution.cs b/OpenSim/Region/CoreModules/World/Archiver/ArchiveWriteRequestExecution.cs index c179a34..0780d86 100644 --- a/OpenSim/Region/CoreModules/World/Archiver/ArchiveWriteRequestExecution.cs +++ b/OpenSim/Region/CoreModules/World/Archiver/ArchiveWriteRequestExecution.cs | |||
@@ -124,7 +124,7 @@ namespace OpenSim.Region.CoreModules.World.Archiver | |||
124 | LandData landData = lo.LandData; | 124 | LandData landData = lo.LandData; |
125 | string landDataPath = String.Format("{0}{1}.xml", ArchiveConstants.LANDDATA_PATH, | 125 | string landDataPath = String.Format("{0}{1}.xml", ArchiveConstants.LANDDATA_PATH, |
126 | landData.GlobalID.ToString()); | 126 | landData.GlobalID.ToString()); |
127 | m_archiveWriter.WriteFile(landDataPath, LandDataSerializer.Serialize(landData)); | 127 | m_archiveWriter.WriteFile(landDataPath, LandDataSerializer.Serialize(landData, m_options)); |
128 | } | 128 | } |
129 | 129 | ||
130 | m_log.InfoFormat("[ARCHIVER]: Adding terrain information to archive."); | 130 | m_log.InfoFormat("[ARCHIVER]: Adding terrain information to archive."); |