aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
diff options
context:
space:
mode:
authorMelanie Thielker2014-07-29 04:41:38 +0200
committerMelanie Thielker2014-07-29 04:41:38 +0200
commit0c2537bb2418f3c66fd060b3852e90df43adbd27 (patch)
tree32cc3b195fe3752e74ec28076d3d4d32495b90b5 /OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
parentSend new parcel permissions to activate viewer options - done right this time (diff)
downloadopensim-SC_OLD-0c2537bb2418f3c66fd060b3852e90df43adbd27.zip
opensim-SC_OLD-0c2537bb2418f3c66fd060b3852e90df43adbd27.tar.gz
opensim-SC_OLD-0c2537bb2418f3c66fd060b3852e90df43adbd27.tar.bz2
opensim-SC_OLD-0c2537bb2418f3c66fd060b3852e90df43adbd27.tar.xz
Try to plumb the other half
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs')
-rw-r--r--OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
index 9058834..85fc7a8 100644
--- a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
+++ b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
@@ -1553,6 +1553,19 @@ namespace OpenSim.Region.CoreModules.World.Land
1553 land_update.ObscureMusic = properties.ObscureMusic; 1553 land_update.ObscureMusic = properties.ObscureMusic;
1554 land_update.ObscureMedia = properties.ObscureMedia; 1554 land_update.ObscureMedia = properties.ObscureMedia;
1555 1555
1556 if (args.ContainsKey("SeeAVs"))
1557 {
1558 land_update.SeeAVs = args["SeeAVs"].AsBoolean();
1559 land_update.AnyAVSounds = args["AnyAVSounds"].AsBoolean();
1560 land_update.GroupAVSounds = args["GroupAVSounds"].AsBoolean();
1561 }
1562 else
1563 {
1564 land_update.SeeAVs = true;
1565 land_update.AnyAVSounds = true;
1566 land_update.GroupAVSounds = true;
1567 }
1568
1556 ILandObject land; 1569 ILandObject land;
1557 lock (m_landList) 1570 lock (m_landList)
1558 { 1571 {