Add MessageTransferModule interface to all scenes, not only the first

0.6.1-post-fixes
Melanie Thielker 2008-11-16 18:59:58 +00:00
parent ca8a2cad53
commit 9e7d00c1e6
1 changed files with 1 additions and 1 deletions

View File

@ -73,9 +73,9 @@ namespace OpenSim.Region.Environment.Modules.Avatar.InstantMessage
if (m_Scenes.Count == 0)
{
scene.AddXmlRPCHandler("grid_instant_message", processXMLRPCGridInstantMessage);
scene.RegisterModuleInterface<IMessageTransferModule>(this);
}
scene.RegisterModuleInterface<IMessageTransferModule>(this);
m_Scenes.Add(scene);
}
}