change limits on parcel name and description on llupd packets

This commit is contained in:
UbitUmarov 2024-02-05 19:13:57 +00:00
parent f127fd56a2
commit 00e9e3c77a
1 changed files with 2 additions and 2 deletions

View File

@ -3624,8 +3624,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
reply.AgentData.AgentID = m_agentId;
reply.Data.ParcelID = parcelID;
reply.Data.OwnerID = land.OwnerID;
reply.Data.Name = Utils.StringToBytes(land.Name);
reply.Data.Desc = Utils.StringToBytes(land.Description, 254);
reply.Data.Name = Utils.StringToBytes(land.Name, 63);
reply.Data.Desc = Utils.StringToBytes(land.Description, 255);
reply.Data.ActualArea = land.Area;
reply.Data.BillableArea = land.Area; // TODO: what is this?