Fix issue with user picks creation. The snapshot id is UUID.Zero in new parcels.

0.8.0.3
BlueWall 2013-12-20 05:43:17 -05:00
parent 9aec36156e
commit 14836e60ff
1 changed files with 0 additions and 6 deletions

View File

@ -612,12 +612,6 @@ namespace OpenSim.Region.CoreModules.Avatar.UserProfiles
"Error selecting pick", false); "Error selecting pick", false);
} }
pick = (UserProfilePick) Pick; pick = (UserProfilePick) Pick;
if(pick.SnapshotId == UUID.Zero)
{
// In case of a new UserPick, the data may not be ready and we would send wrong data, skip it...
m_log.DebugFormat("[PROFILES]: PickInfoRequest: SnapshotID is {0}", UUID.Zero.ToString());
return;
}
Vector3 globalPos; Vector3 globalPos;
Vector3.TryParse(pick.GlobalPos,out globalPos); Vector3.TryParse(pick.GlobalPos,out globalPos);