aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Objects
diff options
context:
space:
mode:
authorUbitUmarov2017-05-19 05:34:49 +0100
committerUbitUmarov2017-05-19 05:34:49 +0100
commit2717ef5da97bc62c241cc9944a0d272374758fd7 (patch)
treeb885edbce2cda0e15fc00f9179481f0b7eaf0a9d /OpenSim/Region/CoreModules/World/Objects
parentreWrite lsl json functions, forward slash is not escaped as LitJson spec; cod... (diff)
downloadopensim-SC_OLD-2717ef5da97bc62c241cc9944a0d272374758fd7.zip
opensim-SC_OLD-2717ef5da97bc62c241cc9944a0d272374758fd7.tar.gz
opensim-SC_OLD-2717ef5da97bc62c241cc9944a0d272374758fd7.tar.bz2
opensim-SC_OLD-2717ef5da97bc62c241cc9944a0d272374758fd7.tar.xz
change some confusing comands help
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Objects')
-rw-r--r--OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs b/OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs
index 79c4713..5a2a173 100644
--- a/OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs
+++ b/OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs
@@ -123,8 +123,8 @@ namespace OpenSim.Region.CoreModules.World.Objects.Commands
123 "Objects", 123 "Objects",
124 false, 124 false,
125 "delete object pos", 125 "delete object pos",
126 "delete object pos <start-coord> to <end-coord>", 126 "delete object pos <start x, start y , start z> <end x, end y, end z>",
127 "Delete scene objects within the given area.", 127 "Delete scene objects within the given volume.",
128 ConsoleUtil.CoordHelp, 128 ConsoleUtil.CoordHelp,
129 HandleDeleteObject); 129 HandleDeleteObject);
130 130
@@ -162,8 +162,8 @@ namespace OpenSim.Region.CoreModules.World.Objects.Commands
162 "Objects", 162 "Objects",
163 false, 163 false,
164 "show object pos", 164 "show object pos",
165 "show object pos [--full] <start-coord> to <end-coord>", 165 "show object pos [--full] <start x, start y , start z> <end x, end y, end z>",
166 "Show details of scene objects within the given area.", 166 "Show details of scene objects within give volume",
167 "The --full option will print out information on all the parts of the object.\n" 167 "The --full option will print out information on all the parts of the object.\n"
168 + "For yet more detailed part information, use the \"show part\" commands.\n" 168 + "For yet more detailed part information, use the \"show part\" commands.\n"
169 + ConsoleUtil.CoordHelp, 169 + ConsoleUtil.CoordHelp,
@@ -189,8 +189,8 @@ namespace OpenSim.Region.CoreModules.World.Objects.Commands
189 "Objects", 189 "Objects",
190 false, 190 false,
191 "show part pos", 191 "show part pos",
192 "show part pos <start-coord> to <end-coord>", 192 "show part pos <start x, start y , start z> <end x, end y, end z>",
193 "Show details of scene object parts within the given area.", 193 "Show details of scene object parts within the given volume.",
194 ConsoleUtil.CoordHelp, 194 ConsoleUtil.CoordHelp,
195 HandleShowPartByPos); 195 HandleShowPartByPos);
196 196