From 6fbfb47b92cf01b839208d0cc7898749306e19f4 Mon Sep 17 00:00:00 2001 From: Robert Adams Date: Sun, 19 Jan 2014 11:03:08 -0800 Subject: varregion: add --noterrain and --noparcel to 'load oar'. --noterrain suppresses the loading of the terrain from the oar. --noparcels suppresses the loading of parcel information from the oar. --- OpenSim/Region/Application/OpenSim.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/Application') diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index a336178..30e2b1b 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs @@ -266,11 +266,13 @@ namespace OpenSim SavePrimsXml2); m_console.Commands.AddCommand("Archiving", false, "load oar", - "load oar [--merge] [--skip-assets] [--displacement \"\"] []", + "load oar [--merge] [--skip-assets] [--noterrain] [--displacement \"\"] []", "Load a region's data from an OAR archive.", "--merge will merge the OAR with the existing scene." + Environment.NewLine + "--skip-assets will load the OAR but ignore the assets it contains." + Environment.NewLine - + "--displacement will add this value to the position of every object loaded" + Environment.NewLine + + "--displacement will add this value to the position of every object loaded" + Environment.NewLine + + "--noterrain suppresses the loading of terrain from the oar" + Environment.NewLine + + "--noparcels suppresses the loading of parcels from the oar" + Environment.NewLine + "The path can be either a filesystem location or a URI." + " If this is not given then the command looks for an OAR named region.oar in the current directory.", LoadOar); -- cgit v1.1