Skip to content

Commit

Permalink
Kind of gross but fix API breakage in ParcelManager
Browse files Browse the repository at this point in the history
  • Loading branch information
cinderblocks committed Nov 11, 2022
1 parent 2fa6734 commit 6a67934
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions LibreMetaverse/ParcelManager.cs
Expand Up @@ -1696,6 +1696,18 @@ public async Task<UUID> RequestRemoteParcelIDAsync(Vector3 location, ulong regio

}

/// <summary>
/// Requests the UUID of the parcel in a remote region at a specified location
/// </summary>
/// <param name="location">Location of the parcel in the remote region</param>
/// <param name="regionHandle">Remote region handle</param>
/// <param name="regionID">Remote region UUID</param>
/// <returns>If successful UUID of the remote parcel, UUID.Zero otherwise</returns>
public UUID RequestRemoteParcelID(Vector3 location, ulong regionHandle, UUID regionID)
{
return RequestRemoteParcelIDAsync(location, regionHandle, regionID).Result;
}

/// <summary>
/// Retrieves information on resources used by the parcel
/// </summary>
Expand Down

0 comments on commit 6a67934

Please sign in to comment.