diff options
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/WorldComm/WorldCommModule.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/WorldComm/WorldCommModule.cs b/OpenSim/Region/CoreModules/Scripting/WorldComm/WorldCommModule.cs index acd8dbf..d935c56 100644 --- a/OpenSim/Region/CoreModules/Scripting/WorldComm/WorldCommModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/WorldComm/WorldCommModule.cs | |||
@@ -87,7 +87,7 @@ using OpenSim.Region.Framework.Scenes; | |||
87 | namespace OpenSim.Region.CoreModules.Scripting.WorldComm | 87 | namespace OpenSim.Region.CoreModules.Scripting.WorldComm |
88 | { | 88 | { |
89 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule")] | 89 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule")] |
90 | public class WorldCommModule : INonSharedRegionModule, IWorldComm | 90 | public class WorldCommModule : ISharedRegionModule, IWorldComm |
91 | { | 91 | { |
92 | // private static readonly ILog m_log = | 92 | // private static readonly ILog m_log = |
93 | // LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 93 | // LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
@@ -127,6 +127,10 @@ namespace OpenSim.Region.CoreModules.Scripting.WorldComm | |||
127 | m_pending = Queue.Synchronized(m_pendingQ); | 127 | m_pending = Queue.Synchronized(m_pendingQ); |
128 | } | 128 | } |
129 | 129 | ||
130 | public void PostInitialise() | ||
131 | { | ||
132 | } | ||
133 | |||
130 | public void AddRegion(Scene scene) | 134 | public void AddRegion(Scene scene) |
131 | { | 135 | { |
132 | m_scene = scene; | 136 | m_scene = scene; |