aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-10-31 21:12:25 +0000
committerJustin Clark-Casey2014-10-31 21:47:07 +0000
commit23fb4f22216c85adb9ca4b308c73bfb821440bd3 (patch)
tree58dd2edf3463bc75b0bf393b5cab3b237c493e3b /OpenSim/Region/CoreModules
parentUpdate libomv to cedac55 (diff)
downloadopensim-SC_OLD-23fb4f22216c85adb9ca4b308c73bfb821440bd3.zip
opensim-SC_OLD-23fb4f22216c85adb9ca4b308c73bfb821440bd3.tar.gz
opensim-SC_OLD-23fb4f22216c85adb9ca4b308c73bfb821440bd3.tar.bz2
opensim-SC_OLD-23fb4f22216c85adb9ca4b308c73bfb821440bd3.tar.xz
Add "region get" command as a synononym for "show region" console command.
This matches existing similar commands and a soon to be added "region set" command.
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r--OpenSim/Region/CoreModules/World/Region/RegionCommandsModule.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/World/Region/RegionCommandsModule.cs b/OpenSim/Region/CoreModules/World/Region/RegionCommandsModule.cs
index 95eca39..c2be5c5 100644
--- a/OpenSim/Region/CoreModules/World/Region/RegionCommandsModule.cs
+++ b/OpenSim/Region/CoreModules/World/Region/RegionCommandsModule.cs
@@ -87,6 +87,15 @@ namespace OpenSim.Region.CoreModules.World.Objects.Commands
87 "Regions", false, "show region", 87 "Regions", false, "show region",
88 "show region", 88 "show region",
89 "Show control information for the currently selected region (host name, max physical prim size, etc).", 89 "Show control information for the currently selected region (host name, max physical prim size, etc).",
90 "A synonym for \"region get\"",
91 HandleShowRegion);
92
93 m_console.Commands.AddCommand(
94 "Regions", false, "region get",
95 "region get",
96 "Show control information for the currently selected region (host name, max physical prim size, etc).",
97 "Some parameters can be set with the \"region set\" command.\n"
98 + "Others must be changed via a viewer (usually via the region/estate dialog box).",
90 HandleShowRegion); 99 HandleShowRegion);
91 } 100 }
92 101