diff options
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs index c204389..a14d869 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs | |||
@@ -60,6 +60,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
60 | /// since the group's last persistent backup | 60 | /// since the group's last persistent backup |
61 | /// </summary> | 61 | /// </summary> |
62 | public bool HasGroupChanged = false; | 62 | public bool HasGroupChanged = false; |
63 | private bool m_locked = false; | ||
63 | 64 | ||
64 | private LLVector3 lastPhysGroupPos; | 65 | private LLVector3 lastPhysGroupPos; |
65 | private LLQuaternion lastPhysGroupRot; | 66 | private LLQuaternion lastPhysGroupRot; |
@@ -1217,7 +1218,15 @@ namespace OpenSim.Region.Environment.Scenes | |||
1217 | part.UpdateExtraParam(type, inUse, data); | 1218 | part.UpdateExtraParam(type, inUse, data); |
1218 | } | 1219 | } |
1219 | } | 1220 | } |
1221 | public bool GetLocked() | ||
1222 | { | ||
1223 | return m_locked; | ||
1224 | } | ||
1225 | public void SetLocked(bool val) | ||
1226 | { | ||
1227 | m_locked = val; | ||
1220 | 1228 | ||
1229 | } | ||
1221 | /// <summary> | 1230 | /// <summary> |
1222 | /// | 1231 | /// |
1223 | /// </summary> | 1232 | /// </summary> |