From fdb902d7628a1e380941eda037b3db1bc3a3a71e Mon Sep 17 00:00:00 2001 From: "Justin Clark-Casey (justincc)" Date: Fri, 31 Oct 2014 21:12:25 +0000 Subject: [PATCH] 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. --- .../CoreModules/World/Region/RegionCommandsModule.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/OpenSim/Region/CoreModules/World/Region/RegionCommandsModule.cs b/OpenSim/Region/CoreModules/World/Region/RegionCommandsModule.cs index 95eca39300..c2be5c58b6 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 "Regions", false, "show region", "show region", "Show control information for the currently selected region (host name, max physical prim size, etc).", + "A synonym for \"region get\"", + HandleShowRegion); + + m_console.Commands.AddCommand( + "Regions", false, "region get", + "region get", + "Show control information for the currently selected region (host name, max physical prim size, etc).", + "Some parameters can be set with the \"region set\" command.\n" + + "Others must be changed via a viewer (usually via the region/estate dialog box).", HandleShowRegion); }