diff options
author | mingchen | 2007-06-08 21:30:51 +0000 |
---|---|---|
committer | mingchen | 2007-06-08 21:30:51 +0000 |
commit | 2c04171990df9e01cd4c5aa600a6eaa1487f9605 (patch) | |
tree | c5664038ce624fb0f6edb63db6c62587e45518a3 /OpenSim/OpenSim.World/Avatar.cs | |
parent | *Moved SendRegionHandshake back to IClientAPI and modded sendRegionHandshakeT... (diff) | |
download | opensim-SC_OLD-2c04171990df9e01cd4c5aa600a6eaa1487f9605.zip opensim-SC_OLD-2c04171990df9e01cd4c5aa600a6eaa1487f9605.tar.gz opensim-SC_OLD-2c04171990df9e01cd4c5aa600a6eaa1487f9605.tar.bz2 opensim-SC_OLD-2c04171990df9e01cd4c5aa600a6eaa1487f9605.tar.xz |
*Added delegates and events for parcel and estate management
*Only thing left is to get the master user setup in both sandbox and grid mode
Diffstat (limited to 'OpenSim/OpenSim.World/Avatar.cs')
-rw-r--r-- | OpenSim/OpenSim.World/Avatar.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/OpenSim.World/Avatar.cs b/OpenSim/OpenSim.World/Avatar.cs index d597ca7..6a4c0f8 100644 --- a/OpenSim/OpenSim.World/Avatar.cs +++ b/OpenSim/OpenSim.World/Avatar.cs | |||
@@ -83,6 +83,13 @@ namespace OpenSim.world | |||
83 | ControllingClient.OnChildAgentStatus += new StatusChange(this.ChildStatusChange); | 83 | ControllingClient.OnChildAgentStatus += new StatusChange(this.ChildStatusChange); |
84 | ControllingClient.OnStopMovement += new GenericCall2(this.StopMovement); | 84 | ControllingClient.OnStopMovement += new GenericCall2(this.StopMovement); |
85 | * */ | 85 | * */ |
86 | |||
87 | ControllingClient.OnParcelPropertiesRequest +=new ParcelPropertiesRequest(this.m_world.parcelManager.handleParcelPropertiesRequest); | ||
88 | ControllingClient.OnParcelDivideRequest += new ParcelDivideRequest(this.m_world.parcelManager.handleParcelDivideRequest); | ||
89 | ControllingClient.OnParcelJoinRequest += new ParcelJoinRequest(this.m_world.parcelManager.handleParcelJoinRequest); | ||
90 | ControllingClient.OnParcelPropertiesUpdateRequest += new ParcelPropertiesUpdateRequest(this.m_world.parcelManager.handleParcelPropertiesUpdateRequest); | ||
91 | |||
92 | ControllingClient.OnEstateOwnerMessage += new EstateOwnerMessageRequest(this.m_world.estateManager.handleEstateOwnerMessage); | ||
86 | } | 93 | } |
87 | 94 | ||
88 | /// <summary> | 95 | /// <summary> |