aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs
index d694f67..a092f5b 100644
--- a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs
@@ -162,7 +162,7 @@ namespace OpenSim.Region.Environment.Scenes
162 public bool AddInventoryItem(IClientAPI remoteClient, uint localID, 162 public bool AddInventoryItem(IClientAPI remoteClient, uint localID,
163 InventoryItemBase item, LLUUID copyItemID) 163 InventoryItemBase item, LLUUID copyItemID)
164 { 164 {
165 LLUUID newItemId = ((copyItemID != null) ? copyItemID : item.inventoryID); 165 LLUUID newItemId = (!copyItemID.Equals(null)) ? copyItemID : item.inventoryID;
166 166
167 SceneObjectPart part = GetChildPart(localID); 167 SceneObjectPart part = GetChildPart(localID);
168 if (part != null) 168 if (part != null)