* Further testing against core packet issue.

0.6.5-rc1
Adam Frisby 2009-05-10 20:31:45 +00:00
parent da948a992a
commit 53a350573e
1 changed files with 3 additions and 2 deletions

View File

@ -243,8 +243,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
return item; return item;
lock (contents) lock (contents)
{ {
if (contents.Remove(item.Sequence)) if (contents.Contains(item.Sequence))
return item; if (contents.Remove(item.Sequence))
return item;
} }
} }
} }