diff options
author | UbitUmarov | 2014-08-19 10:03:04 +0100 |
---|---|---|
committer | UbitUmarov | 2014-08-19 10:03:04 +0100 |
commit | 919aef157385c694b598439e3a50a2fe7a4f9e98 (patch) | |
tree | 3b7e4ec9af008ca3ffe946074d67a611767af0a8 /OpenSim | |
parent | variationsss... (diff) | |
download | opensim-SC-919aef157385c694b598439e3a50a2fe7a4f9e98.zip opensim-SC-919aef157385c694b598439e3a50a2fe7a4f9e98.tar.gz opensim-SC-919aef157385c694b598439e3a50a2fe7a4f9e98.tar.bz2 opensim-SC-919aef157385c694b598439e3a50a2fe7a4f9e98.tar.xz |
send zero velocity again on avatar full update or its ugly
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 6eb0c5e..b0cb4ea 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -5291,7 +5291,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
5291 | 5291 | ||
5292 | byte[] objectData = new byte[76]; | 5292 | byte[] objectData = new byte[76]; |
5293 | 5293 | ||
5294 | Vector3 velocity = data.Velocity; | 5294 | Vector3 velocity = new Vector3(0, 0, 0); |
5295 | Vector3 acceleration = new Vector3(0, 0, 0); | 5295 | Vector3 acceleration = new Vector3(0, 0, 0); |
5296 | rotation.Normalize(); | 5296 | rotation.Normalize(); |
5297 | Vector3 vrot = new Vector3(rotation.X, rotation.Y, rotation.Z); | 5297 | Vector3 vrot = new Vector3(rotation.X, rotation.Y, rotation.Z); |