Defer sending of CHANGED_OWNER to make it work on rezzed objects and

attachments in addition to objects sold in place
This commit is contained in:
Melanie
2010-05-03 01:14:38 +01:00
parent af0ffb2a5a
commit 45301d8a49
2 changed files with 15 additions and 3 deletions

View File

@@ -122,6 +122,8 @@ namespace OpenSim.Framework
private int _type = 0;
private UUID _oldID;
private bool _ownerChanged = false;
public UUID AssetID {
get {
return _assetID;
@@ -320,6 +322,15 @@ namespace OpenSim.Framework
}
}
public bool OwnerChanged {
get {
return _ownerChanged;
}
set {
_ownerChanged = value;
}
}
// See ICloneable
#region ICloneable Members