aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneGraph.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-07-16 02:53:36 +0100
committerJustin Clark-Casey (justincc)2011-07-16 02:53:36 +0100
commit27fae36a21ff39e9bd413a3f4a4bb544f40bb4e1 (patch)
tree0bf46ff5022029421dd52af150ea25d586aabc61 /OpenSim/Region/Framework/Scenes/SceneGraph.cs
parentAdd very basic test for resizing a scene object with one prim (diff)
downloadopensim-SC_OLD-27fae36a21ff39e9bd413a3f4a4bb544f40bb4e1.zip
opensim-SC_OLD-27fae36a21ff39e9bd413a3f4a4bb544f40bb4e1.tar.gz
opensim-SC_OLD-27fae36a21ff39e9bd413a3f4a4bb544f40bb4e1.tar.bz2
opensim-SC_OLD-27fae36a21ff39e9bd413a3f4a4bb544f40bb4e1.tar.xz
remove the need to supply SceneObjectGroup.GroupResize() with a localId.
This is utterly pointless scene we already know which sog we're dealing with.
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneGraph.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneGraph.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs
index 7ec7ea3..0e5ffc0 100644
--- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs
@@ -1234,7 +1234,7 @@ namespace OpenSim.Region.Framework.Scenes
1234 { 1234 {
1235 if (m_parentScene.Permissions.CanEditObject(group.UUID, remoteClient.AgentId)) 1235 if (m_parentScene.Permissions.CanEditObject(group.UUID, remoteClient.AgentId))
1236 { 1236 {
1237 group.GroupResize(scale, localID); 1237 group.GroupResize(scale);
1238 } 1238 }
1239 } 1239 }
1240 } 1240 }