mirror of
https://github.com/opensim/opensim.git
synced 2026-05-20 15:25:47 +08:00
*Reworked parcel joining to work the same way as LL's method.
**Parcels within selection now join and not the two parcels selected at each corner *Created OnSignificantClientMovement event that is triggered when an avatar moves more than 2 meters.
This commit is contained in:
@@ -87,6 +87,7 @@ namespace OpenSim.Region.ClientStack
|
||||
|
||||
public event EstateOwnerMessageRequest OnEstateOwnerMessage;
|
||||
|
||||
public event SignificantClientMovement OnSignificantClientMovement;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
@@ -1177,5 +1178,13 @@ namespace OpenSim.Region.ClientStack
|
||||
|
||||
OutPacket( packet );
|
||||
}
|
||||
|
||||
public void TriggerSignificantClientMovement(IClientAPI remote_client)
|
||||
{
|
||||
if (OnSignificantClientMovement != null)
|
||||
{
|
||||
OnSignificantClientMovement(remote_client);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user