diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index f482d8f..27a58a4 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -242,15 +242,15 @@ namespace OpenSim | |||
242 | 242 | ||
243 | foreach (string topic in topics) | 243 | foreach (string topic in topics) |
244 | { | 244 | { |
245 | m_console.Commands.AddCommand("plugin", false, "help " + topic, | 245 | m_console.Commands.AddCommand(topic, false, "help " + topic, |
246 | "help " + topic, | 246 | "help " + topic, |
247 | "Get help on plugin command '" + topic + "'", | 247 | "Get help on plugin command '" + topic + "'", |
248 | HandleCommanderHelp); | 248 | HandleCommanderHelp); |
249 | 249 | // | |
250 | m_console.Commands.AddCommand("plugin", false, topic, | 250 | // m_console.Commands.AddCommand("General", false, topic, |
251 | topic, | 251 | // topic, |
252 | "Execute subcommand for plugin '" + topic + "'", | 252 | // "Execute subcommand for plugin '" + topic + "'", |
253 | null); | 253 | // null); |
254 | 254 | ||
255 | ICommander commander = null; | 255 | ICommander commander = null; |
256 | 256 | ||