aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-05-24 22:10:14 +0000
committerJustin Clarke Casey2008-05-24 22:10:14 +0000
commit79eecd3d25ccc701d5b2aba77f034c03a20b6556 (patch)
tree188b83286b22fa7f655149a9494a834985fe0e8e /OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
parent* Refactor: Push some dictionary initialization down from Scene into InnerScene (diff)
downloadopensim-SC_OLD-79eecd3d25ccc701d5b2aba77f034c03a20b6556.zip
opensim-SC_OLD-79eecd3d25ccc701d5b2aba77f034c03a20b6556.tar.gz
opensim-SC_OLD-79eecd3d25ccc701d5b2aba77f034c03a20b6556.tar.bz2
opensim-SC_OLD-79eecd3d25ccc701d5b2aba77f034c03a20b6556.tar.xz
* Refactor: Renaming various *Entity*() methods to *Object*() methods on the basis that they all take SOG parameters to improve code readability for now
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.Inventory.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.Inventory.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
index 409ee1e..81ab733 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
@@ -1501,7 +1501,8 @@ namespace OpenSim.Region.Environment.Scenes
1501 } 1501 }
1502 1502
1503 group.ResetIDs(); 1503 group.ResetIDs();
1504 AddEntity(group); 1504
1505 AddObject(group);
1505 1506
1506 // if attachment we set it's asset id so object updates can reflect that 1507 // if attachment we set it's asset id so object updates can reflect that
1507 // if not, we set it's position in world. 1508 // if not, we set it's position in world.
@@ -1612,7 +1613,8 @@ namespace OpenSim.Region.Environment.Scenes
1612 return null; 1613 return null;
1613 } 1614 }
1614 group.ResetIDs(); 1615 group.ResetIDs();
1615 AddEntity(group); 1616
1617 AddObject(group);
1616 1618
1617 // Set the startup parameter for on_rez event and llGetStartParameter() function 1619 // Set the startup parameter for on_rez event and llGetStartParameter() function
1618 group.StartParameter = param; 1620 group.StartParameter = param;