rez new objects with the group requested by viewers and not internal idea of active one

LSLKeyTest
UbitUmarov 2016-08-05 00:52:45 +01:00
parent 29dc449cc8
commit a0cab03caa
1 changed files with 1 additions and 1 deletions

View File

@ -7544,7 +7544,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
AddNewPrim handlerAddPrim = OnAddPrim;
if (handlerAddPrim != null)
handlerAddPrim(AgentId, ActiveGroupId, addPacket.ObjectData.RayEnd, addPacket.ObjectData.Rotation, shape, addPacket.ObjectData.BypassRaycast, addPacket.ObjectData.RayStart, addPacket.ObjectData.RayTargetID, addPacket.ObjectData.RayEndIsIntersection);
handlerAddPrim(AgentId, addPacket.AgentData.GroupID, addPacket.ObjectData.RayEnd, addPacket.ObjectData.Rotation, shape, addPacket.ObjectData.BypassRaycast, addPacket.ObjectData.RayStart, addPacket.ObjectData.RayTargetID, addPacket.ObjectData.RayEndIsIntersection);
}
return true;
}