diff options
author | Justin Clark-Casey (justincc) | 2011-07-16 02:53:36 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-07-16 02:53:36 +0100 |
commit | 27fae36a21ff39e9bd413a3f4a4bb544f40bb4e1 (patch) | |
tree | 0bf46ff5022029421dd52af150ea25d586aabc61 /OpenSim/Region/Framework/Scenes/SceneGraph.cs | |
parent | Add very basic test for resizing a scene object with one prim (diff) | |
download | opensim-SC-27fae36a21ff39e9bd413a3f4a4bb544f40bb4e1.zip opensim-SC-27fae36a21ff39e9bd413a3f4a4bb544f40bb4e1.tar.gz opensim-SC-27fae36a21ff39e9bd413a3f4a4bb544f40bb4e1.tar.bz2 opensim-SC-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 '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneGraph.cs | 2 |
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 | } |