diff options
author | lbsa71 | 2008-01-22 15:30:47 +0000 |
---|---|---|
committer | lbsa71 | 2008-01-22 15:30:47 +0000 |
commit | bc88f90a6e8e73f08d8142101483161e48b5c48a (patch) | |
tree | b2a2dfa38ea466be8a827c54d49d4e509711782d /OpenSim | |
parent | * changed nonsensical PermissionMask and ObjectFlags mixup; if this causes pe... (diff) | |
download | opensim-SC_OLD-bc88f90a6e8e73f08d8142101483161e48b5c48a.zip opensim-SC_OLD-bc88f90a6e8e73f08d8142101483161e48b5c48a.tar.gz opensim-SC_OLD-bc88f90a6e8e73f08d8142101483161e48b5c48a.tar.bz2 opensim-SC_OLD-bc88f90a6e8e73f08d8142101483161e48b5c48a.tar.xz |
* I just love doing these substantial contributions.
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs index 619bc97..452614c 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | |||
@@ -76,7 +76,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
76 | 76 | ||
77 | private Vector3 m_sitTargetPosition = new Vector3(0, 0, 0); | 77 | private Vector3 m_sitTargetPosition = new Vector3(0, 0, 0); |
78 | private Quaternion m_sitTargetOrientation = new Quaternion(0, 0, 0, 1); | 78 | private Quaternion m_sitTargetOrientation = new Quaternion(0, 0, 0, 1); |
79 | private LLUUID m_SitTargetAvatar = LLUUID.Zero; | 79 | private LLUUID m_sitTargetAvatar = LLUUID.Zero; |
80 | 80 | ||
81 | #region Permissions | 81 | #region Permissions |
82 | 82 | ||
@@ -921,13 +921,13 @@ namespace OpenSim.Region.Environment.Scenes | |||
921 | 921 | ||
922 | public void SetAvatarOnSitTarget(LLUUID avatarID) | 922 | public void SetAvatarOnSitTarget(LLUUID avatarID) |
923 | { | 923 | { |
924 | m_SitTargetAvatar = avatarID; | 924 | m_sitTargetAvatar = avatarID; |
925 | TriggerScriptChangedEvent(Changed.LINK); | 925 | TriggerScriptChangedEvent(Changed.LINK); |
926 | } | 926 | } |
927 | 927 | ||
928 | public LLUUID GetAvatarOnSitTarget() | 928 | public LLUUID GetAvatarOnSitTarget() |
929 | { | 929 | { |
930 | return m_SitTargetAvatar; | 930 | return m_sitTargetAvatar; |
931 | } | 931 | } |
932 | 932 | ||
933 | 933 | ||