aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorlbsa712007-12-29 19:53:07 +0000
committerlbsa712007-12-29 19:53:07 +0000
commit3e8df2b86801794dd1b59da7373e409c813a69c1 (patch)
tree54e0d3950f5bec019039037d27c619fa70d770ab /OpenSim/Region
parentMake inventory items nominate explicit inventory folders rather than hardcoding (diff)
downloadopensim-SC_OLD-3e8df2b86801794dd1b59da7373e409c813a69c1.zip
opensim-SC_OLD-3e8df2b86801794dd1b59da7373e409c813a69c1.tar.gz
opensim-SC_OLD-3e8df2b86801794dd1b59da7373e409c813a69c1.tar.bz2
opensim-SC_OLD-3e8df2b86801794dd1b59da7373e409c813a69c1.tar.xz
* Extracted out old RezObject method placing at absolute pos without the raytracing
* Ignored some bins
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.Inventory.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
index 35112e7..1a77565 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
@@ -716,6 +716,11 @@ namespace OpenSim.Region.Environment.Scenes
716 } 716 }
717 717
718 LLVector3 pos = GetNewRezLocation(RayStart, RayEnd, RayTargetID, new LLQuaternion(0, 0, 0, 1), BypassRayCast, bRayEndIsIntersection); 718 LLVector3 pos = GetNewRezLocation(RayStart, RayEnd, RayTargetID, new LLQuaternion(0, 0, 0, 1), BypassRayCast, bRayEndIsIntersection);
719 RezObject(remoteClient, itemID, pos);
720 }
721
722 public virtual void RezObject(IClientAPI remoteClient, LLUUID itemID, LLVector3 pos)
723 {
719 CachedUserInfo userInfo = CommsManager.UserProfileCacheService.GetUserDetails(remoteClient.AgentId); 724 CachedUserInfo userInfo = CommsManager.UserProfileCacheService.GetUserDetails(remoteClient.AgentId);
720 if (userInfo != null) 725 if (userInfo != null)
721 { 726 {