oops send flag PrimFlags.InventoryEmpty but do not override others

This commit is contained in:
UbitUmarov
2019-03-21 07:13:39 +00:00
parent cfbd34f618
commit db191cd4e2

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;
}