From d1d93fae6cc80a51f51cbd6d036505e2f333982a Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Mon, 9 Feb 2009 18:11:09 +0000 Subject: * Restore show information for the OpenSim region server (version, info, threads, etc.) --- OpenSim/Region/Application/OpenSim.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'OpenSim/Region/Application/OpenSim.cs') diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 4d3dcbb..5bce225 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs @@ -479,6 +479,7 @@ namespace OpenSim } } break; + case "get": if (cmdparams.Length < 3) { @@ -501,6 +502,7 @@ namespace OpenSim } break; + case "save": m_console.Notice("Saving configuration file: " + Application.iniFilePath); m_config.Save(Application.iniFilePath); @@ -763,6 +765,8 @@ namespace OpenSim // see BaseOpenSimServer override public void HandleShow(string mod, string[] cmd) { + base.HandleShow(mod, cmd); + List args = new List(cmd); args.RemoveAt(0); string[] showParams = args.ToArray(); @@ -835,7 +839,6 @@ namespace OpenSim }); break; - case "queues": Notice(GetQueuesReport()); break; -- cgit v1.1