* Use the commander name to register module commanders instead of providing the information twice

This commit is contained in:
Justin Clarke Casey
2009-02-05 19:54:22 +00:00
parent 65448cd02d
commit 9a666bda02
7 changed files with 31 additions and 8 deletions

View File

@@ -237,7 +237,7 @@ namespace OpenSim.Region.Environment.Modules.World.Permissions
debugCommand.AddArgument("enable_debug_perms", "true to enable debugging to console all perms", "Boolean");
m_commander.RegisterCommand("debug", debugCommand);
m_scene.RegisterModuleCommander("CommanderPermissions", m_commander);
m_scene.RegisterModuleCommander(m_commander);
m_scene.EventManager.OnPluginConsole += new EventManager.OnPluginConsoleDelegate(EventManager_OnPluginConsole);
}