diff options
-rw-r--r-- | OpenSim/Region/CoreModules/World/Region/RegionCommandsModule.cs | 9 |
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 | ||