Implement command "land show". This shows all the parcels on the currently selected region/s

This is useful for diagnostics.  The command is "land show" rather than "show land" because it's implemented as a module specific subcommand.
This commit is contained in:
Justin Clark-Casey (justincc)
2011-01-26 21:12:41 +00:00
parent c4727645b8
commit a0469daf75
5 changed files with 126 additions and 19 deletions

View File

@@ -76,7 +76,7 @@ namespace OpenSim.Framework.Console
System.Console.WriteLine(text);
}
public virtual void OutputFormat(string format, params string[] components)
public virtual void OutputFormat(string format, params object[] components)
{
Output(string.Format(format, components));
}