FIRE-11118: Don't draw our dot twice.

master
Cinders 2013-07-22 14:30:38 -06:00
parent 8fcd56d848
commit 49ec23f19b
1 changed files with 6 additions and 1 deletions

View File

@ -557,8 +557,13 @@ void LLNetMap::draw()
// Draw avatars
for (U32 i = 0; i < avatar_ids.size(); i++)
{
pos_map = globalPosToView(positions[i]);
// <FS:CR> FIRE-11118 - skip our dot, we'll draw one later.
//pos_map = globalPosToView(positions[i]);
LLUUID uuid = avatar_ids[i];
if (uuid == gAgent.getID())
continue;
pos_map = globalPosToView(positions[i]);
// </FS:CR>
// <FS:Ansariel> Check for unknown Z-offset => AVATAR_UNKNOWN_Z_OFFSET
//unknown_relative_z = positions[i].mdV[VZ] == COARSEUPDATE_MAX_Z &&