Skip to content

Commit

Permalink
Comment upkeep in AppearanceManager; seems unending
Browse files Browse the repository at this point in the history
cinderblocks committed Jan 24, 2025
1 parent f68f929 commit 27305af
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions LibreMetaverse/AppearanceManager.cs
Original file line number Diff line number Diff line change
@@ -115,7 +115,7 @@ public enum BakeType
}

/// <summary>
/// Appearance Flags, introdued with server side baking, currently unused
/// Appearance Flags, introduced with server side baking, currently unused
/// </summary>
[Flags]
public enum AppearanceFlags : uint
@@ -1122,9 +1122,9 @@ public void Attach(UUID itemID, UUID ownerID, string name, string description,
}

/// <summary>
/// Detach an item from our agent using an <see cref="OpenMetaverse.InventoryItem"/> object
/// Detach an item from our agent by <see cref="OpenMetaverse.InventoryItem"/>
/// </summary>
/// <param name="item">An <see cref="OpenMetaverse.InventoryItem"/> object</param>
/// <param name="item"><see cref="OpenMetaverse.InventoryItem"/> to detach</param>
public void Detach(InventoryItem item)
{
Detach(item.UUID);
@@ -1152,9 +1152,8 @@ public void Detach(UUID itemID)

/// <summary>
/// Retrieves the currently worn attachments.
/// removed async and Task due to no await.
/// </summary>
/// <returns></returns>
/// <returns>True on success receiving attachments</returns>
private bool GetAgentAttachments()
{
var objectsPrimitives = Client.Network.CurrentSim.ObjectsPrimitives;

0 comments on commit 27305af

Please sign in to comment.