mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
* Implement help <command> from the region console
* So at the moment once can type 'help terrain fill' as well as 'terrain fill help' * Current implementation is a transient hack that should be tidied up soon
This commit is contained in:
@@ -59,7 +59,7 @@ namespace OpenSim.Region.Environment.Modules.Framework.InterfaceCommander
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
|
||||
sb.AppendLine("===" + m_name + "===");
|
||||
sb.AppendLine("=== " + m_name + " ===");
|
||||
|
||||
foreach (ICommand com in m_commands.Values)
|
||||
{
|
||||
@@ -83,9 +83,6 @@ namespace OpenSim.Region.Environment.Modules.Framework.InterfaceCommander
|
||||
m_generatedApiClassName += m_name.Substring(1);
|
||||
}
|
||||
|
||||
/// <value>
|
||||
/// Commands that this commander knows about
|
||||
/// </value>
|
||||
public Dictionary<string, ICommand> Commands
|
||||
{
|
||||
get { return m_commands; }
|
||||
|
||||
Reference in New Issue
Block a user