* Following A_Biondi's suggestion, going to try returning a version number of 1 instead of 0 for the folder requested in a InventoryDescendentsPacket

* Can't hurt - it doesn't appear to cause any problems in a quick test.
0.6.0-stable
Justin Clarke Casey 2008-04-08 20:11:35 +00:00
parent c522da0434
commit f8faf18c66
2 changed files with 2 additions and 1 deletions

View File

@ -49,6 +49,7 @@ Patches
* devalnor-#708
* Diva Canto
* krtaylor (IBM)
* A_Biondi
LSL Devs

View File

@ -1351,7 +1351,7 @@ namespace OpenSim.Region.ClientStack
descend.AgentData.AgentID = AgentId;
descend.AgentData.OwnerID = ownerID;
descend.AgentData.FolderID = folderID;
descend.AgentData.Version = 0;
descend.AgentData.Version = 1;
return descend;
}