From 490ac0be005a989c86ebde62aad137fd2da7cbd8 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Mon, 8 Sep 2008 02:40:20 +0000 Subject: Implement proper persistence of the following prim properties: Floating text, Rotation, Texture animation, Particle System This will make "Eye Candy" scripts work without modification in XEngine. The use of the CHANGED_REGION_RESTART hack is no longer needed. Implemented in MySQL only, hovertext also in SQLite. --- OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs') diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs index 5625854..206216e 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs @@ -213,6 +213,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP if (ok) { + // Make sure we are getting zeroes when running off the + // end of grab / degrab packets from old clients + // + int z; + for (z = numBytes ; z < RecvBuffer.Length ; z++) + RecvBuffer[z] = (byte)0; + epProxy = epSender; if (proxyPortOffset != 0) { -- cgit v1.1