oops send flag PrimFlags.InventoryEmpty but do not override others

0.9.1.0-post-fixes
UbitUmarov 2019-03-21 07:13:39 +00:00
parent cfbd34f618
commit db191cd4e2
1 changed files with 1 additions and 1 deletions

View File

@ -2480,7 +2480,7 @@ namespace OpenSim.Region.Framework.Scenes
uint eff = (uint)Flags | (uint)LocalFlags;
if(m_inventory == null || m_inventory.Count == 0)
eff = (uint)PrimFlags.InventoryEmpty;
eff |= (uint)PrimFlags.InventoryEmpty;
return eff;
}