diff options
author | UbitUmarov | 2019-03-21 07:13:39 +0000 |
---|---|---|
committer | UbitUmarov | 2019-03-21 07:13:39 +0000 |
commit | db191cd4e26c759a2a66946329f07cc52fe1cab3 (patch) | |
tree | 16bd2cfbbe9af330217c8aa2577e923072a748a7 /OpenSim/Region/Framework/Scenes | |
parent | add some code for compressed updates, but disabled, since more changes are ne... (diff) | |
download | opensim-SC-db191cd4e26c759a2a66946329f07cc52fe1cab3.zip opensim-SC-db191cd4e26c759a2a66946329f07cc52fe1cab3.tar.gz opensim-SC-db191cd4e26c759a2a66946329f07cc52fe1cab3.tar.bz2 opensim-SC-db191cd4e26c759a2a66946329f07cc52fe1cab3.tar.xz |
oops send flag PrimFlags.InventoryEmpty but do not override others
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs index 6fb0eed..5c38bf3 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |||
@@ -2480,7 +2480,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2480 | 2480 | ||
2481 | uint eff = (uint)Flags | (uint)LocalFlags; | 2481 | uint eff = (uint)Flags | (uint)LocalFlags; |
2482 | if(m_inventory == null || m_inventory.Count == 0) | 2482 | if(m_inventory == null || m_inventory.Count == 0) |
2483 | eff = (uint)PrimFlags.InventoryEmpty; | 2483 | eff |= (uint)PrimFlags.InventoryEmpty; |
2484 | return eff; | 2484 | return eff; |
2485 | } | 2485 | } |
2486 | 2486 | ||