diff options
author | Teravus Ovares | 2008-10-05 19:38:04 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-10-05 19:38:04 +0000 |
commit | 2cc028e965e75128daa0212236ad9a3118b63814 (patch) | |
tree | 8d65d149a0bde12e44fa4db3384f61f18e01a16e | |
parent | Fixed small coordinate issue: The center is (min+max)/2, not (max-min)/2 (diff) | |
download | opensim-SC_OLD-2cc028e965e75128daa0212236ad9a3118b63814.zip opensim-SC_OLD-2cc028e965e75128daa0212236ad9a3118b63814.tar.gz opensim-SC_OLD-2cc028e965e75128daa0212236ad9a3118b63814.tar.bz2 opensim-SC_OLD-2cc028e965e75128daa0212236ad9a3118b63814.tar.xz |
* Fix sitting avatar showing up properly on the minimap
-rw-r--r-- | OpenSim/Region/Environment/Scenes/ScenePresence.cs | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs index 30f3e04..ab2abed 100644 --- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs | |||
@@ -1637,7 +1637,24 @@ namespace OpenSim.Region.Environment.Scenes | |||
1637 | { | 1637 | { |
1638 | if (avatars[i] != this) | 1638 | if (avatars[i] != this) |
1639 | { | 1639 | { |
1640 | CoarseLocations.Add(avatars[i].m_pos); | 1640 | if (avatars[i].ParentID != 0) |
1641 | { | ||
1642 | // sitting avatar | ||
1643 | SceneObjectPart sop = m_scene.GetSceneObjectPart(avatars[i].ParentID); | ||
1644 | if (sop != null) | ||
1645 | { | ||
1646 | CoarseLocations.Add(sop.AbsolutePosition + avatars[i].m_pos); | ||
1647 | } | ||
1648 | else | ||
1649 | { | ||
1650 | // we can't find the parent.. ! arg! | ||
1651 | CoarseLocations.Add(avatars[i].m_pos); | ||
1652 | } | ||
1653 | } | ||
1654 | else | ||
1655 | { | ||
1656 | CoarseLocations.Add(avatars[i].m_pos); | ||
1657 | } | ||
1641 | } | 1658 | } |
1642 | } | 1659 | } |
1643 | 1660 | ||