* Extracted out old RezObject method placing at absolute pos without the raytracing

* Ignored some bins
afrisby
lbsa71 2007-12-29 19:53:07 +00:00
parent 40e89678b7
commit 3e8df2b868
1 changed files with 5 additions and 0 deletions

View File

@ -716,6 +716,11 @@ namespace OpenSim.Region.Environment.Scenes
} }
LLVector3 pos = GetNewRezLocation(RayStart, RayEnd, RayTargetID, new LLQuaternion(0, 0, 0, 1), BypassRayCast, bRayEndIsIntersection); LLVector3 pos = GetNewRezLocation(RayStart, RayEnd, RayTargetID, new LLQuaternion(0, 0, 0, 1), BypassRayCast, bRayEndIsIntersection);
RezObject(remoteClient, itemID, pos);
}
public virtual void RezObject(IClientAPI remoteClient, LLUUID itemID, LLVector3 pos)
{
CachedUserInfo userInfo = CommsManager.UserProfileCacheService.GetUserDetails(remoteClient.AgentId); CachedUserInfo userInfo = CommsManager.UserProfileCacheService.GetUserDetails(remoteClient.AgentId);
if (userInfo != null) if (userInfo != null)
{ {