From ba174b777c4351f2d640837522131a299cf2f77a Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sun, 19 Jan 2020 16:30:02 +0000 Subject: [PATCH] send allowaccessoverride flag on regionhandshake --- OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index a778ba30e1..dad10bc9c0 100755 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs @@ -844,7 +844,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP flags |= RegionFlags.ResetHomeOnTeleport; if (Scene.RegionInfo.RegionSettings.FixedSun) flags |= RegionFlags.SunFixed; + // allow access override (was taxfree) + if (!Scene.RegionInfo.EstateSettings.TaxFree) // this is now wrong means !ALLOW_ACCESS_OVERRIDE + flags |= RegionFlags.AllowParcelAccessOverride; + if (Scene.RegionInfo.RegionSettings.BlockTerraform) flags |= RegionFlags.BlockTerraform; if (!Scene.RegionInfo.RegionSettings.AllowLandResell)