yeackk silly bug on new avaterpickeravaterpicker

master
UbitUmarov 2020-03-05 00:00:08 +00:00
parent 1df06f459a
commit abe26f39f6
1 changed files with 3 additions and 1 deletions

View File

@ -3055,7 +3055,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
{
UDPPacketBuffer newbuf = m_udpServer.GetNewUDPBuffer(m_udpClient.RemoteEndPoint);
byte[] newdata = newbuf.Data;
Buffer.BlockCopy(data, 0, newdata, pos, 42);
Buffer.BlockCopy(data, 0, newdata, 0, 42);
buf = newbuf;
data = newdata;
pos = 43;
}
count = 0;