corrade-vassal

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 15  →  ?path2? @ 16
/libopenmetaverse/OpenMetaverse/ParcelManager.cs
@@ -569,6 +569,12 @@
public bool ObscureMusic;
/// <summary>A struct containing media details</summary>
public ParcelMedia Media;
/// <summary> true if avatars in this parcel should be invisible to people outside</summary>
public bool SeeAVs;
/// <summary> true if avatars outside can hear any sounds avatars inside play</summary>
public bool AnyAVSounds;
/// <summary> true if group members outside can hear any sounds avatars inside play</summary>
public bool GroupAVSounds;
 
/// <summary>
/// Displays a parcel object in string format
@@ -640,7 +646,10 @@
req.SnapshotID = this.SnapshotID;
req.UserLocation = this.UserLocation;
req.UserLookAt = this.UserLookAt;
req.SeeAVs = this.SeeAVs;
req.AnyAVSounds = this.AnyAVSounds;
req.GroupAVSounds = this.GroupAVSounds;
 
OSDMap body = req.Serialize();
 
CapsClient capsPost = new CapsClient(url);
@@ -1762,6 +1771,9 @@
parcel.Media.MediaType = msg.MediaType;
parcel.ObscureMedia = msg.ObscureMedia;
parcel.ObscureMusic = msg.ObscureMusic;
parcel.SeeAVs = msg.SeeAVs;
parcel.AnyAVSounds = msg.AnyAVSounds;
parcel.GroupAVSounds = msg.GroupAVSounds;
 
if (Client.Settings.PARCEL_TRACKING)
{