mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
* Make sure that deleted objects do not send further object updates to the client
This commit is contained in:
@@ -2074,6 +2074,9 @@ if (m_shape != null) {
|
||||
//
|
||||
if (ParentGroup.IsSelected && IsAttachment)
|
||||
return;
|
||||
|
||||
if (ParentGroup.IsDeleted)
|
||||
return;
|
||||
|
||||
clientFlags &= ~(uint) PrimFlags.CreateSelected;
|
||||
|
||||
@@ -2179,16 +2182,7 @@ if (m_shape != null) {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Send a terse update to the client.
|
||||
/// </summary>
|
||||
/// <param name="remoteClient"></param>
|
||||
// public void SendTerseUpdate(IClientAPI remoteClient)
|
||||
// {
|
||||
// SendTerseUpdateToClient(remoteClient);
|
||||
// }
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// Send a terse update to all clients
|
||||
/// </summary>
|
||||
public void SendTerseUpdateToAllClients()
|
||||
{
|
||||
@@ -2199,11 +2193,6 @@ if (m_shape != null) {
|
||||
}
|
||||
}
|
||||
|
||||
// public void SendTerseUpdateToClient(IClientAPI remoteClient, Vector3 lPos)
|
||||
// {
|
||||
// SendTerseUpdateToClient(remoteclient);
|
||||
// }
|
||||
|
||||
public void SetAttachmentPoint(uint AttachmentPoint)
|
||||
{
|
||||
this.AttachmentPoint = AttachmentPoint;
|
||||
|
||||
Reference in New Issue
Block a user