diff options
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs index aaa25e7..2f746b2 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs | |||
@@ -341,8 +341,9 @@ namespace OpenSim.Region.Environment.Scenes | |||
341 | /// | 341 | /// |
342 | /// </summary> | 342 | /// </summary> |
343 | public SceneObjectGroup(Scene scene, ulong regionHandle, LLUUID ownerID, uint localID, LLVector3 pos, | 343 | public SceneObjectGroup(Scene scene, ulong regionHandle, LLUUID ownerID, uint localID, LLVector3 pos, |
344 | PrimitiveBaseShape shape):this(scene, regionHandle, ownerID, localID, pos, LLQuaternion.Identity, shape) | 344 | PrimitiveBaseShape shape) |
345 | { | 345 | : this(scene, regionHandle, ownerID, localID, pos, LLQuaternion.Identity, shape) |
346 | { | ||
346 | } | 347 | } |
347 | 348 | ||
348 | #endregion | 349 | #endregion |
@@ -927,6 +928,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
927 | part.UpdatePrimFlags(type, inUse, data); | 928 | part.UpdatePrimFlags(type, inUse, data); |
928 | } | 929 | } |
929 | } | 930 | } |
931 | |||
930 | public void UpdateExtraParam(uint localID, ushort type, bool inUse, byte[] data) | 932 | public void UpdateExtraParam(uint localID, ushort type, bool inUse, byte[] data) |
931 | { | 933 | { |
932 | SceneObjectPart part = GetChildPart(localID); | 934 | SceneObjectPart part = GetChildPart(localID); |
@@ -1394,4 +1396,4 @@ namespace OpenSim.Region.Environment.Scenes | |||
1394 | Text = text; | 1396 | Text = text; |
1395 | } | 1397 | } |
1396 | } | 1398 | } |
1397 | } | 1399 | } \ No newline at end of file |