mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 09:16:28 +08:00
Change prompt handling in console. No user changes
This commit is contained in:
@@ -48,7 +48,7 @@ namespace OpenSim.Framework.Console
|
||||
/// </summary>
|
||||
public string DefaultPrompt
|
||||
{
|
||||
set { m_defaultPrompt = value + "# "; }
|
||||
set { m_defaultPrompt = value; }
|
||||
get { return m_defaultPrompt; }
|
||||
}
|
||||
protected string m_defaultPrompt;
|
||||
@@ -123,7 +123,7 @@ namespace OpenSim.Framework.Console
|
||||
|
||||
public virtual string ReadLine(string p, bool isCommand, bool e)
|
||||
{
|
||||
System.Console.Write("{0}", prompt);
|
||||
System.Console.Write("{0}", p);
|
||||
string cmdinput = System.Console.ReadLine();
|
||||
|
||||
return cmdinput;
|
||||
|
||||
Reference in New Issue
Block a user