diff options
Diffstat (limited to 'OpenSim/Region/Application/OpenSimBase.cs')
-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 4d56147..d032864 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -203,14 +203,14 @@ namespace OpenSim | |||
203 | 203 | ||
204 | foreach (string topic in topics) | 204 | foreach (string topic in topics) |
205 | { | 205 | { |
206 | m_console.Commands.AddCommand("plugin", "help "+topic, | 206 | m_console.Commands.AddCommand("plugin", "help " + topic, |
207 | "help "+topic, | 207 | "help " + topic, |
208 | "Get help on plugin command '"+topic+"'", | 208 | "Get help on plugin command '" + topic + "'", |
209 | HandleCommanderHelp); | 209 | HandleCommanderHelp); |
210 | 210 | ||
211 | m_console.Commands.AddCommand("plugin", topic, | 211 | m_console.Commands.AddCommand("plugin", topic, |
212 | topic, | 212 | topic, |
213 | "Execute subcommand for plugin '"+topic+"'", | 213 | "Execute subcommand for plugin '" + topic + "'", |
214 | null); | 214 | null); |
215 | 215 | ||
216 | ICommander commander = | 216 | ICommander commander = |
@@ -221,8 +221,8 @@ namespace OpenSim | |||
221 | 221 | ||
222 | foreach (string command in commander.Commands.Keys) | 222 | foreach (string command in commander.Commands.Keys) |
223 | { | 223 | { |
224 | m_console.Commands.AddCommand(topic, topic+" "+command, | 224 | m_console.Commands.AddCommand(topic, topic + " " + command, |
225 | topic+" "+commander.Commands[command].ShortHelp(), | 225 | topic + " " + commander.Commands[command].ShortHelp(), |
226 | String.Empty, HandleCommanderCommand); | 226 | String.Empty, HandleCommanderCommand); |
227 | } | 227 | } |
228 | } | 228 | } |