From efb60b5b42f6adce1bd98f8b7562a397865f11fc Mon Sep 17 00:00:00 2001
From: UbitUmarov
Date: Fri, 5 Aug 2016 15:36:50 +0100
Subject: use group provided by viewer on Object rez from inventory
---
OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
(limited to 'OpenSim/Region')
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
index 7152015..339fc15 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
@@ -2454,7 +2454,7 @@ namespace OpenSim.Region.Framework.Scenes
///
///
///
- ///
+ ///
///
///
///
@@ -2465,7 +2465,7 @@ namespace OpenSim.Region.Framework.Scenes
///
///
///
- public virtual void RezObject(IClientAPI remoteClient, UUID itemID, UUID groupID,
+ public virtual void RezObject(IClientAPI remoteClient, UUID itemID, UUID rezGroupID,
Vector3 RayEnd, Vector3 RayStart,
UUID RayTargetID, byte BypassRayCast, bool RayEndIsIntersection,
bool RezSelected, bool RemoveItem, UUID fromTaskID)
@@ -2479,7 +2479,7 @@ namespace OpenSim.Region.Framework.Scenes
IInventoryAccessModule invAccess = RequestModuleInterface();
if (invAccess != null)
invAccess.RezObject(
- remoteClient, itemID, RayEnd, RayStart, RayTargetID, BypassRayCast, RayEndIsIntersection,
+ remoteClient, itemID, rezGroupID, RayEnd, RayStart, RayTargetID, BypassRayCast, RayEndIsIntersection,
RezSelected, RemoveItem, fromTaskID, false);
}
else
--
cgit v1.1