aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorUbitUmarov2014-08-19 10:03:04 +0100
committerUbitUmarov2014-08-19 10:03:04 +0100
commit919aef157385c694b598439e3a50a2fe7a4f9e98 (patch)
tree3b7e4ec9af008ca3ffe946074d67a611767af0a8
parentvariationsss... (diff)
downloadopensim-SC_OLD-919aef157385c694b598439e3a50a2fe7a4f9e98.zip
opensim-SC_OLD-919aef157385c694b598439e3a50a2fe7a4f9e98.tar.gz
opensim-SC_OLD-919aef157385c694b598439e3a50a2fe7a4f9e98.tar.bz2
opensim-SC_OLD-919aef157385c694b598439e3a50a2fe7a4f9e98.tar.xz
send zero velocity again on avatar full update or its ugly
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs2
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);