Dynamically adjust to the number of visual params sent.

master-beforevarregion
Melanie 2014-01-04 21:18:37 +00:00
parent eab9390e05
commit dd96fef940
1 changed files with 1 additions and 1 deletions

View File

@ -3634,7 +3634,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
AvatarAppearancePacket avp = (AvatarAppearancePacket)PacketPool.Instance.GetPacket(PacketType.AvatarAppearance);
// TODO: don't create new blocks if recycling an old packet
avp.VisualParam = new AvatarAppearancePacket.VisualParamBlock[218];
avp.VisualParam = new AvatarAppearancePacket.VisualParamBlock[visualParams.Length];
avp.ObjectData.TextureEntry = textureEntry;
AvatarAppearancePacket.VisualParamBlock avblock = null;