diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectPart.cs')
-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 | ||