From e2a68e03698382392107eb776bd37341a8a696ad Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Fri, 25 Sep 2020 21:49:30 +0100 Subject: [PATCH] encode parcel flag group Owned --- OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index afb45794c4..fbfc16dc1a 100755 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs @@ -3718,6 +3718,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP if((land.Flags & (uint)ParcelFlags.ForSale) != 0) reply.Data.Flags |= (byte)((1 << 7)); + if (land.GroupID == land.OwnerID) + reply.Data.Flags |= 4; + Vector3 pos = land.UserLocation; if (pos.Equals(Vector3.Zero)) {