aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Console/CommandConsole.cs
diff options
context:
space:
mode:
authorMelanie2012-11-23 02:06:05 +0000
committerMelanie2012-11-23 02:06:05 +0000
commitc96729b55dbb9d0025700c84b03aae35b9f42780 (patch)
treeb783618176e11709ab5f74472efa8a04d573ceb5 /OpenSim/Framework/Console/CommandConsole.cs
parentRevert help to display a full command list. Leave the help categories in as (diff)
downloadopensim-SC_OLD-c96729b55dbb9d0025700c84b03aae35b9f42780.zip
opensim-SC_OLD-c96729b55dbb9d0025700c84b03aae35b9f42780.tar.gz
opensim-SC_OLD-c96729b55dbb9d0025700c84b03aae35b9f42780.tar.bz2
opensim-SC_OLD-c96729b55dbb9d0025700c84b03aae35b9f42780.tar.xz
Add a newline before the constant help text
Diffstat (limited to 'OpenSim/Framework/Console/CommandConsole.cs')
-rw-r--r--OpenSim/Framework/Console/CommandConsole.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Framework/Console/CommandConsole.cs b/OpenSim/Framework/Console/CommandConsole.cs
index f160404..106b406 100644
--- a/OpenSim/Framework/Console/CommandConsole.cs
+++ b/OpenSim/Framework/Console/CommandConsole.cs
@@ -113,6 +113,7 @@ namespace OpenSim.Framework.Console
113 // General help 113 // General help
114 if (helpParts.Count == 0) 114 if (helpParts.Count == 0)
115 { 115 {
116 help.Add(""); // Will become a newline.
116 help.Add(GeneralHelpText); 117 help.Add(GeneralHelpText);
117 help.AddRange(CollectAllCommandsHelp()); 118 help.AddRange(CollectAllCommandsHelp());
118 } 119 }