Changes WorldCommModule to ISharedRegionModule.

Signed-off-by: Melanie <melanie@t-data.com>
mysql-performance
Revolution 2010-01-27 17:44:57 -06:00 committed by Melanie
parent 72dd680dd3
commit c26f1d1bfa
1 changed files with 5 additions and 1 deletions

View File

@ -87,7 +87,7 @@ using OpenSim.Region.Framework.Scenes;
namespace OpenSim.Region.CoreModules.Scripting.WorldComm
{
[Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule")]
public class WorldCommModule : INonSharedRegionModule, IWorldComm
public class WorldCommModule : ISharedRegionModule, IWorldComm
{
// private static readonly ILog m_log =
// LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
@ -127,6 +127,10 @@ namespace OpenSim.Region.CoreModules.Scripting.WorldComm
m_pending = Queue.Synchronized(m_pendingQ);
}
public void PostInitialise()
{
}
public void AddRegion(Scene scene)
{
m_scene = scene;