mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 01:35:46 +08:00
Attachment persistence (Mantis #1711)
Change user server to handle attachment assets record properly. Ensure that attachments are not re-rezzed on region crossing. Persistence will NOT WORK with earliser UGAI!! Change region server to match.
This commit is contained in:
@@ -892,37 +892,6 @@ namespace OpenSim.Data.MSSQL
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// add an attachement to an avatar
|
||||
/// </summary>
|
||||
/// <param name="user">the avatar UUID</param>
|
||||
/// <param name="item">the item UUID</param>
|
||||
override public void AddAttachment(LLUUID user, LLUUID item)
|
||||
{
|
||||
// TBI?
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Remove an attachement from an avatar
|
||||
/// </summary>
|
||||
/// <param name="user">the avatar UUID</param>
|
||||
/// <param name="item">the item UUID</param>
|
||||
override public void RemoveAttachment(LLUUID user, LLUUID item)
|
||||
{
|
||||
// TBI?
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// get (fetch?) all attached item to an avatar
|
||||
/// </summary>
|
||||
/// <param name="user">the avatar UUID</param>
|
||||
/// <returns>List of attached item</returns>
|
||||
/// <remarks>return an empty list</remarks>
|
||||
override public List<LLUUID> GetAttachments(LLUUID user)
|
||||
{
|
||||
return new List<LLUUID>();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Database provider name
|
||||
/// </summary>
|
||||
@@ -948,5 +917,9 @@ namespace OpenSim.Data.MSSQL
|
||||
public void runQuery(string query)
|
||||
{
|
||||
}
|
||||
|
||||
override public void ResetAttachments(LLUUID userID)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user