diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs index 2fc379c..efc9289 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | |||
@@ -2366,6 +2366,14 @@ if (m_shape != null) { | |||
2366 | } | 2366 | } |
2367 | } | 2367 | } |
2368 | 2368 | ||
2369 | public void SetVolumeDetect(int param) | ||
2370 | { | ||
2371 | if (PhysActor != null) | ||
2372 | { | ||
2373 | PhysActor.SetVolumeDetect(param); | ||
2374 | } | ||
2375 | } | ||
2376 | |||
2369 | public void SetGroup(UUID groupID, IClientAPI client) | 2377 | public void SetGroup(UUID groupID, IClientAPI client) |
2370 | { | 2378 | { |
2371 | _groupID = groupID; | 2379 | _groupID = groupID; |