diff options
author | MW | 2007-05-29 17:57:03 +0000 |
---|---|---|
committer | MW | 2007-05-29 17:57:03 +0000 |
commit | 4d0261ed2225dff3f107ec52484770a6f7435790 (patch) | |
tree | 7911331caadab92136ab84f80c41ceba1bdf7691 /OpenSim/OpenSim.World/Avatar.cs | |
parent | (no commit message) (diff) | |
download | opensim-SC_OLD-4d0261ed2225dff3f107ec52484770a6f7435790.zip opensim-SC_OLD-4d0261ed2225dff3f107ec52484770a6f7435790.tar.gz opensim-SC_OLD-4d0261ed2225dff3f107ec52484770a6f7435790.tar.bz2 opensim-SC_OLD-4d0261ed2225dff3f107ec52484770a6f7435790.tar.xz |
Diffstat (limited to 'OpenSim/OpenSim.World/Avatar.cs')
-rw-r--r-- | OpenSim/OpenSim.World/Avatar.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/OpenSim.World/Avatar.cs b/OpenSim/OpenSim.World/Avatar.cs index 3c22db2..ee5aa44 100644 --- a/OpenSim/OpenSim.World/Avatar.cs +++ b/OpenSim/OpenSim.World/Avatar.cs | |||
@@ -70,10 +70,10 @@ namespace OpenSim.world | |||
70 | /* | 70 | /* |
71 | //register for events | 71 | //register for events |
72 | ControllingClient.OnRequestWearables += new GenericCall(this.SendOurAppearance); | 72 | ControllingClient.OnRequestWearables += new GenericCall(this.SendOurAppearance); |
73 | ControllingClient.OnSetAppearance += new SetAppearance(this.SetAppearance); | 73 | ControllingClient.OnSetAppearance += new SetAppearance(this.SetAppearance);*/ |
74 | ControllingClient.OnCompleteMovementToRegion += new GenericCall2(this.CompleteMovement); | 74 | ControllingClient.OnCompleteMovementToRegion += new GenericCall2(this.CompleteMovement); |
75 | ControllingClient.OnCompleteMovementToRegion += new GenericCall2(this.SendInitialPosition); | 75 | ControllingClient.OnCompleteMovementToRegion += new GenericCall2(this.SendInitialPosition); |
76 | ControllingClient.OnAgentUpdate += new GenericCall3(this.HandleAgentUpdate); | 76 | /* ControllingClient.OnAgentUpdate += new GenericCall3(this.HandleAgentUpdate); |
77 | ControllingClient.OnStartAnim += new StartAnim(this.SendAnimPack); | 77 | ControllingClient.OnStartAnim += new StartAnim(this.SendAnimPack); |
78 | ControllingClient.OnChildAgentStatus += new StatusChange(this.ChildStatusChange); | 78 | ControllingClient.OnChildAgentStatus += new StatusChange(this.ChildStatusChange); |
79 | ControllingClient.OnStopMovement += new GenericCall2(this.StopMovement); | 79 | ControllingClient.OnStopMovement += new GenericCall2(this.StopMovement); |
@@ -116,7 +116,7 @@ namespace OpenSim.world | |||
116 | 116 | ||
117 | public void CompleteMovement() | 117 | public void CompleteMovement() |
118 | { | 118 | { |
119 | 119 | this.ControllingClient.MoveAgentIntoRegion(this.regionData); | |
120 | } | 120 | } |
121 | 121 | ||
122 | public void HandleAgentUpdate(Packet pack) | 122 | public void HandleAgentUpdate(Packet pack) |
@@ -130,9 +130,9 @@ namespace OpenSim.world | |||
130 | } | 130 | } |
131 | 131 | ||
132 | //really really should be moved somewhere else (RegionInfo.cs ?) | 132 | //really really should be moved somewhere else (RegionInfo.cs ?) |
133 | public void SendRegionHandshake(RegionInfo regionInfo) | 133 | public void SendRegionHandshake() |
134 | { | 134 | { |
135 | this.ControllingClient.SendRegionHandshake(regionInfo); | 135 | this.ControllingClient.SendRegionHandshake(this.regionData); |
136 | } | 136 | } |
137 | 137 | ||
138 | public static void LoadAnims() | 138 | public static void LoadAnims() |