diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 4514b1e2a7..70e489c742 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs @@ -1243,6 +1243,14 @@ namespace OpenSim.Region.ClientStack.LindenUDP handshake.RegionInfo.TerrainDetail3 = args.terrainDetail3; handshake.RegionInfo.CacheID = UUID.Random(); //I guess this is for the client to remember an old setting? + handshake.RegionInfo2.RegionID = regionInfo.RegionID; + + handshake.RegionInfo3.ColoName = Utils.EmptyBytes; + handshake.RegionInfo3.CPUClassID = 0; + handshake.RegionInfo3.CPURatio = 0; + handshake.RegionInfo3.ProductName = Utils.StringToBytes("OpenSim"); + handshake.RegionInfo3.ProductSKU = Utils.EmptyBytes; + OutPacket(handshake, ThrottleOutPacketType.Task); }