diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
index 7152015eb7..339fc156f3 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