From 77e43f480154b0a950d9d5f54df5c225fc64e77a Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Mon, 11 Jan 2010 17:30:05 -0800 Subject: Fixed a couple of bugs with Appearance. Appearance is all good now. --- .../ServiceConnectorsOut/Avatar/LocalAvatarServiceConnector.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'OpenSim/Region/CoreModules/ServiceConnectorsOut') diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Avatar/LocalAvatarServiceConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Avatar/LocalAvatarServiceConnector.cs index 0c8ee61..47f19a3 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Avatar/LocalAvatarServiceConnector.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Avatar/LocalAvatarServiceConnector.cs @@ -72,7 +72,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Avatar IConfig userConfig = source.Configs["AvatarService"]; if (userConfig == null) { - m_log.Error("[USER CONNECTOR]: AvatarService missing from OpenSim.ini"); + m_log.Error("[AVATAR CONNECTOR]: AvatarService missing from OpenSim.ini"); return; } @@ -81,7 +81,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Avatar if (serviceDll == String.Empty) { - m_log.Error("[USER CONNECTOR]: No LocalServiceModule named in section AvatarService"); + m_log.Error("[AVATAR CONNECTOR]: No LocalServiceModule named in section AvatarService"); return; } @@ -92,11 +92,11 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Avatar if (m_AvatarService == null) { - m_log.Error("[USER CONNECTOR]: Can't load user account service"); + m_log.Error("[AVATAR CONNECTOR]: Can't load user account service"); return; } m_Enabled = true; - m_log.Info("[USER CONNECTOR]: Local avatar connector enabled"); + m_log.Info("[AVATAR CONNECTOR]: Local avatar connector enabled"); } } } @@ -118,7 +118,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Avatar if (!m_Enabled) return; - scene.RegisterModuleInterface(m_AvatarService); + scene.RegisterModuleInterface(this); } public void RemoveRegion(Scene scene) -- cgit v1.1