From ffaa8622549f5445cee0b7e206c7c7884e00a003 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sat, 30 Jan 2021 00:27:06 +0000 Subject: [PATCH] mantis 8856: test a simpler fix --- 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 317ce1e74c..9bcc8e0a28 100755 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs @@ -4207,6 +4207,10 @@ 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 + classifiedFlags |= 0x4; // pg + ClassifiedInfoReplyPacket cr = (ClassifiedInfoReplyPacket)PacketPool.Instance.GetPacket( PacketType.ClassifiedInfoReply);