diff options
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs index c19428d..bf0b06d 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs | |||
@@ -190,12 +190,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
190 | 190 | ||
191 | if (item.Sequence != 0) | 191 | if (item.Sequence != 0) |
192 | lock (contents) | 192 | lock (contents) |
193 | { | 193 | { |
194 | if (contents.ContainsKey(item.Sequence)) | 194 | if (contents.ContainsKey(item.Sequence)) |
195 | contents[item.Sequence] += 1; | 195 | contents[item.Sequence] += 1; |
196 | else | 196 | else |
197 | contents.Add(item.Sequence, 1); | 197 | contents.Add(item.Sequence, 1); |
198 | } | 198 | } |
199 | 199 | ||
200 | lock (this) | 200 | lock (this) |
201 | { | 201 | { |