Prevent sending Land Properties for unprivileged users
parent
f93dac9239
commit
fb321a0573
|
@ -27,6 +27,7 @@
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using log4net;
|
using log4net;
|
||||||
using OpenMetaverse;
|
using OpenMetaverse;
|
||||||
|
@ -389,12 +390,14 @@ namespace OpenSim.Region.CoreModules.World.Land
|
||||||
ParcelFlags.DenyAgeUnverified);
|
ParcelFlags.DenyAgeUnverified);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint preserve = LandData.Flags & ~allowedDelta;
|
if (allowedDelta != 0)
|
||||||
newData.Flags = preserve | (args.ParcelFlags & allowedDelta);
|
{
|
||||||
|
uint preserve = LandData.Flags & ~allowedDelta;
|
||||||
|
newData.Flags = preserve | (args.ParcelFlags & allowedDelta);
|
||||||
|
|
||||||
m_scene.LandChannel.UpdateLandObject(LandData.LocalID, newData);
|
m_scene.LandChannel.UpdateLandObject(LandData.LocalID, newData);
|
||||||
|
SendLandUpdateToAvatarsOverMe(snap_selection);
|
||||||
SendLandUpdateToAvatarsOverMe(snap_selection);
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void UpdateLandSold(UUID avatarID, UUID groupID, bool groupOwned, uint AuctionID, int claimprice, int area)
|
public void UpdateLandSold(UUID avatarID, UUID groupID, bool groupOwned, uint AuctionID, int claimprice, int area)
|
||||||
|
|
Loading…
Reference in New Issue