aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSimBase.cs
diff options
context:
space:
mode:
authorMelanie2012-03-25 20:07:43 +0100
committerMelanie2012-03-25 20:07:43 +0100
commit44f1f876562dd41c0c619462a57d6a33731729ac (patch)
tree96c7a583dcb483f2fe8d19787a381fae1985b1b1 /OpenSim/Region/Application/OpenSimBase.cs
parentMerge branch 'master' into careminster (diff)
parentSimplify the module invocation registration. The types and method name (diff)
downloadopensim-SC_OLD-44f1f876562dd41c0c619462a57d6a33731729ac.zip
opensim-SC_OLD-44f1f876562dd41c0c619462a57d6a33731729ac.tar.gz
opensim-SC_OLD-44f1f876562dd41c0c619462a57d6a33731729ac.tar.bz2
opensim-SC_OLD-44f1f876562dd41c0c619462a57d6a33731729ac.tar.xz
Merge branch 'master' into careminster
Diffstat (limited to 'OpenSim/Region/Application/OpenSimBase.cs')
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs11
1 files changed, 6 insertions, 5 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index c1d0727..ddc7f10 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -263,15 +263,16 @@ namespace OpenSim
263 { 263 {
264 string capitalizedTopic = char.ToUpper(topic[0]) + topic.Substring(1); 264 string capitalizedTopic = char.ToUpper(topic[0]) + topic.Substring(1);
265 265
266 // This is a hack to allow the user to enter the help command in upper or lowercase. This will go
267 // away at some point.
268 m_console.Commands.AddCommand(capitalizedTopic, false, "help " + topic,
269 "help " + capitalizedTopic,
270 "Get help on plugin command '" + topic + "'",
271 HandleCommanderHelp);
266 m_console.Commands.AddCommand(capitalizedTopic, false, "help " + capitalizedTopic, 272 m_console.Commands.AddCommand(capitalizedTopic, false, "help " + capitalizedTopic,
267 "help " + capitalizedTopic, 273 "help " + capitalizedTopic,
268 "Get help on plugin command '" + topic + "'", 274 "Get help on plugin command '" + topic + "'",
269 HandleCommanderHelp); 275 HandleCommanderHelp);
270//
271// m_console.Commands.AddCommand("General", false, topic,
272// topic,
273// "Execute subcommand for plugin '" + topic + "'",
274// null);
275 276
276 ICommander commander = null; 277 ICommander commander = null;
277 278