diff options
Diffstat (limited to '')
-rw-r--r-- | Common/OpenSim.Framework/IRegionCommsHost.cs | 2 | ||||
-rw-r--r-- | Common/OpenSim.Framework/RegionCommsHostBase.cs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Common/OpenSim.Framework/IRegionCommsHost.cs b/Common/OpenSim.Framework/IRegionCommsHost.cs index d115bb7..c56383e 100644 --- a/Common/OpenSim.Framework/IRegionCommsHost.cs +++ b/Common/OpenSim.Framework/IRegionCommsHost.cs | |||
@@ -6,7 +6,7 @@ using OpenSim.Framework.Types; | |||
6 | 6 | ||
7 | namespace OpenSim.Framework | 7 | namespace OpenSim.Framework |
8 | { | 8 | { |
9 | public delegate void ExpectUserDelegate(AgentCircuitData agent); | 9 | public delegate void ExpectUserDelegate(ulong regionHandle, AgentCircuitData agent); |
10 | public delegate void UpdateNeighbours(List<RegionInfo> neighbours); | 10 | public delegate void UpdateNeighbours(List<RegionInfo> neighbours); |
11 | 11 | ||
12 | public interface IRegionCommsHost | 12 | public interface IRegionCommsHost |
diff --git a/Common/OpenSim.Framework/RegionCommsHostBase.cs b/Common/OpenSim.Framework/RegionCommsHostBase.cs index 782755e..41babe7 100644 --- a/Common/OpenSim.Framework/RegionCommsHostBase.cs +++ b/Common/OpenSim.Framework/RegionCommsHostBase.cs | |||
@@ -18,11 +18,11 @@ namespace OpenSim.Framework | |||
18 | /// </summary> | 18 | /// </summary> |
19 | /// <param name="agent"></param> | 19 | /// <param name="agent"></param> |
20 | /// <returns></returns> | 20 | /// <returns></returns> |
21 | public virtual bool TriggerExpectUser(AgentCircuitData agent) | 21 | public virtual bool TriggerExpectUser(ulong regionHandle, AgentCircuitData agent) |
22 | { | 22 | { |
23 | if(OnExpectUser != null) | 23 | if(OnExpectUser != null) |
24 | { | 24 | { |
25 | OnExpectUser(agent); | 25 | OnExpectUser(regionHandle, agent); |
26 | return true; | 26 | return true; |
27 | } | 27 | } |
28 | 28 | ||