From 1091f78e049943037f9fdd11fd6a98f4e7b846ac Mon Sep 17 00:00:00 2001 From: Charles Krinke Date: Sat, 28 Jun 2008 19:04:28 +0000 Subject: Mantis#1626. Thank you kindly, Melanie for a patch that: Fixes IAvatarService for grid and standalone modes --- OpenSim/Framework/Communications/UserManagerBase.cs | 4 ++-- OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/OpenSim/Framework/Communications/UserManagerBase.cs b/OpenSim/Framework/Communications/UserManagerBase.cs index fe09b03..1e059fe 100644 --- a/OpenSim/Framework/Communications/UserManagerBase.cs +++ b/OpenSim/Framework/Communications/UserManagerBase.cs @@ -41,7 +41,7 @@ namespace OpenSim.Framework.Communications /// /// Base class for user management (create, read, etc) /// - public abstract class UserManagerBase : IUserService + public abstract class UserManagerBase : IUserService, IAvatarService { private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); @@ -703,4 +703,4 @@ namespace OpenSim.Framework.Communications return new List(); } } -} \ No newline at end of file +} diff --git a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs index 0ffc4b2..7afec37 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs @@ -39,7 +39,7 @@ using OpenSim.Framework.Communications; namespace OpenSim.Region.Communications.OGS1 { - public class OGS1UserServices : IUserService + public class OGS1UserServices : IUserService, IAvatarService { private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); -- cgit v1.1