From 14836e60ff09f0e20dc25802130c4e142c4ba350 Mon Sep 17 00:00:00 2001 From: BlueWall Date: Fri, 20 Dec 2013 05:43:17 -0500 Subject: Fix issue with user picks creation. The snapshot id is UUID.Zero in new parcels. --- OpenSim/Region/CoreModules/Avatar/UserProfiles/UserProfileModule.cs | 6 ------ 1 file changed, 6 deletions(-) (limited to 'OpenSim/Region/CoreModules/Avatar') diff --git a/OpenSim/Region/CoreModules/Avatar/UserProfiles/UserProfileModule.cs b/OpenSim/Region/CoreModules/Avatar/UserProfiles/UserProfileModule.cs index 015e2d0..b15dcf8 100644 --- a/OpenSim/Region/CoreModules/Avatar/UserProfiles/UserProfileModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/UserProfiles/UserProfileModule.cs @@ -612,12 +612,6 @@ namespace OpenSim.Region.CoreModules.Avatar.UserProfiles "Error selecting pick", false); } 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.TryParse(pick.GlobalPos,out globalPos); -- cgit v1.1