oops, fix the bit mask

This commit is contained in:
UbitUmarov
2021-01-30 00:47:00 +00:00
parent ffaa862254
commit 7a05a9af48

View File

@@ -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 =