mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 08:06:27 +08:00
Moved Avatar appearance Factory to its own project so that the reference to MySQLDatabaseMapper could be removed from Region.Environment.
Added a using OpenSim.Framework.Data statement to MySQLDatabaseMapper , to try to fix the build problem that has been reported on the mailing list.
This commit is contained in:
@@ -114,15 +114,15 @@ namespace OpenSim.Region.Environment
|
||||
m_loadedSharedModules.Add(loadMod.Name, loadMod);
|
||||
}
|
||||
|
||||
AvatarFactoryModule avatarFactory = new AvatarFactoryModule();
|
||||
if (m_loadedSharedModules.ContainsKey(avatarFactory.Name))
|
||||
{
|
||||
m_log.ErrorFormat("[MODULES]: Module name \"{0}\" already exists in module list. Module type {1} not added!", avatarFactory.Name, "AvarFactoryModule");
|
||||
}
|
||||
else
|
||||
{
|
||||
m_loadedSharedModules.Add(avatarFactory.Name, avatarFactory);
|
||||
}
|
||||
// AvatarFactoryModule avatarFactory = new AvatarFactoryModule();
|
||||
// if (m_loadedSharedModules.ContainsKey(avatarFactory.Name))
|
||||
// {
|
||||
// m_log.ErrorFormat("[MODULES]: Module name \"{0}\" already exists in module list. Module type {1} not added!", avatarFactory.Name, "AvarFactoryModule");
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// m_loadedSharedModules.Add(avatarFactory.Name, avatarFactory);
|
||||
// }
|
||||
|
||||
XMLRPCModule xmlRpcMod = new XMLRPCModule();
|
||||
if (m_loadedSharedModules.ContainsKey(xmlRpcMod.Name))
|
||||
|
||||
Reference in New Issue
Block a user