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.
ghosts
Justin Clark-Casey (justincc) 2014-10-31 21:12:25 +00:00
parent a58ae73694
commit fdb902d762
1 changed files with 9 additions and 0 deletions

View File

@ -87,6 +87,15 @@ namespace OpenSim.Region.CoreModules.World.Objects.Commands
"Regions", false, "show region", "Regions", false, "show region",
"show region", "show region",
"Show control information for the currently selected region (host name, max physical prim size, etc).", "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); HandleShowRegion);
} }