Make "show version" console command available across all servers

This commit is contained in:
Justin Clark-Casey (justincc)
2012-11-23 04:19:08 +00:00
parent 065d6d6fe1
commit 4b46a0d536
2 changed files with 7 additions and 8 deletions

View File

@@ -104,10 +104,6 @@ namespace OpenSim.Framework.Servers
"show threads",
"Show thread status", HandleShow);
m_console.Commands.AddCommand("General", false, "show version",
"show version",
"Show server version", HandleShow);
m_console.Commands.AddCommand("General", false, "threads abort",
"threads abort <thread-id>",
"Abort a managed thread. Use \"show threads\" to find possible threads.", HandleThreadsAbort);
@@ -263,10 +259,6 @@ namespace OpenSim.Framework.Servers
case "threads":
Notice(GetThreadsReport());
break;
case "version":
Notice(GetVersionText());
break;
}
}