diff options
author | Jeff Ames | 2007-10-31 05:29:51 +0000 |
---|---|---|
committer | Jeff Ames | 2007-10-31 05:29:51 +0000 |
commit | 7f0d836d35e579632413e1b06d5f5e6e6981ca05 (patch) | |
tree | b7b2dad1fad193ff43ec431c046d381f7f9751bc /OpenSim/Framework/Communications/Cache | |
parent | Thank you Teravus, very much, for a 'jump', 'crouch' and 'inertia' patch for ... (diff) | |
download | opensim-SC_OLD-7f0d836d35e579632413e1b06d5f5e6e6981ca05.zip opensim-SC_OLD-7f0d836d35e579632413e1b06d5f5e6e6981ca05.tar.gz opensim-SC_OLD-7f0d836d35e579632413e1b06d5f5e6e6981ca05.tar.bz2 opensim-SC_OLD-7f0d836d35e579632413e1b06d5f5e6e6981ca05.tar.xz |
made illogical bitwise operations logical
Diffstat (limited to 'OpenSim/Framework/Communications/Cache')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/AssetCache.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/Cache/AssetCache.cs b/OpenSim/Framework/Communications/Cache/AssetCache.cs index ca2fc35..5457d14 100644 --- a/OpenSim/Framework/Communications/Cache/AssetCache.cs +++ b/OpenSim/Framework/Communications/Cache/AssetCache.cs | |||
@@ -681,7 +681,7 @@ namespace OpenSim.Framework.Communications.Cache | |||
681 | SendPacket(); | 681 | SendPacket(); |
682 | counter++; | 682 | counter++; |
683 | 683 | ||
684 | if ((request.PacketCounter >= request.NumPackets) | counter > 100 | (request.NumPackets == 1) | | 684 | if ((request.PacketCounter >= request.NumPackets) || counter > 100 || (request.NumPackets == 1) || |
685 | (request.DiscardLevel == -1)) | 685 | (request.DiscardLevel == -1)) |
686 | { | 686 | { |
687 | return true; | 687 | return true; |