OpenSim.OpenSimBase.HandleCommanderHelp C# (CSharp) Method

HandleCommanderHelp() private method

private HandleCommanderHelp ( string module, string cmd ) : void
module string
cmd string
return void
        private void HandleCommanderHelp(string module, string[] cmd)
        {
            // Only safe for the interactive console, since it won't
            // let us come here unless both scene and commander exist
            //
            ICommander moduleCommander = SceneManager.CurrentOrFirstScene.GetCommander(cmd[1]);
            if (moduleCommander != null)
                m_console.Output(moduleCommander.Help);
        }