From 7a05a9af48f762ae5996ed8249a81093fca56471 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sat, 30 Jan 2021 00:47:00 +0000 Subject: [PATCH] oops, fix the bit mask --- OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 9bcc8e0a28..cb9037a1d4 100755 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs @@ -4208,7 +4208,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP public void SendClassifiedInfoReply(UUID classifiedID, UUID creatorID, uint creationDate, uint expirationDate, uint category, string name, string description, UUID parcelID, uint parentEstate, UUID snapshotID, string simName, Vector3 globalPos, string parcelName, byte classifiedFlags, int price) { // fix classifiedFlags maturity - if((classifiedFlags & 0x2e) == 0) // if none + if((classifiedFlags & 0x4e) == 0) // if none classifiedFlags |= 0x4; // pg ClassifiedInfoReplyPacket cr =