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

* Should disappear soon
0.6.3-post-fixes
Justin Clarke Casey 2009-02-05 21:46:04 +00:00
parent 732cd838b1
commit 3027b6ad27
1 changed files with 1 additions and 1 deletions

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();