diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 2c8d88b..ea73abb 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -127,6 +127,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
127 | public event ObjectDeselect OnObjectDetach; | 127 | public event ObjectDeselect OnObjectDetach; |
128 | public event ObjectDrop OnObjectDrop; | 128 | public event ObjectDrop OnObjectDrop; |
129 | public event GenericCall1 OnCompleteMovementToRegion; | 129 | public event GenericCall1 OnCompleteMovementToRegion; |
130 | public event UpdateAgent OnPreAgentUpdate; | ||
130 | public event UpdateAgent OnAgentUpdate; | 131 | public event UpdateAgent OnAgentUpdate; |
131 | public event AgentRequestSit OnAgentRequestSit; | 132 | public event AgentRequestSit OnAgentRequestSit; |
132 | public event AgentSit OnAgentSit; | 133 | public event AgentSit OnAgentSit; |
@@ -4880,7 +4881,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
4880 | UpdateAgent handlerAgentUpdate = OnAgentUpdate; | 4881 | UpdateAgent handlerAgentUpdate = OnAgentUpdate; |
4881 | lastarg = arg; // save this set of arguments for nexttime | 4882 | lastarg = arg; // save this set of arguments for nexttime |
4882 | if (handlerAgentUpdate != null) | 4883 | if (handlerAgentUpdate != null) |
4884 | { | ||
4885 | OnPreAgentUpdate(this, arg); | ||
4883 | OnAgentUpdate(this, arg); | 4886 | OnAgentUpdate(this, arg); |
4887 | } | ||
4884 | 4888 | ||
4885 | handlerAgentUpdate = null; | 4889 | handlerAgentUpdate = null; |
4886 | } | 4890 | } |