* cheap hack to make module help information more accurately reflect what command text needs to be typed

* Should disappear soon
This commit is contained in:
Justin Clarke Casey
2009-02-05 21:46:04 +00:00
parent 732cd838b1
commit 3027b6ad27

View File

@@ -63,7 +63,7 @@ namespace OpenSim.Region.Environment.Modules.Framework.InterfaceCommander
foreach (ICommand com in m_commands.Values)
{
sb.AppendLine("* " + com.Name + " - " + com.Help);
sb.AppendLine("* " + Name + " " + com.Name + " - " + com.Help);
}
return sb.ToString();