Plumb Viewer version into ScenePresence for initial login. It's still not

carried along
slimupdates2
Melanie Thielker 2010-05-06 00:54:21 +02:00 committed by Melanie
parent 2ebe148266
commit e45f5ac126
2 changed files with 2 additions and 0 deletions

View File

@ -2652,6 +2652,7 @@ namespace OpenSim.Region.Framework.Scenes
ScenePresence sp = CreateAndAddScenePresence(client);
if (aCircuit != null)
sp.Appearance = aCircuit.Appearance;
sp.Viewer = aCircuit.Viewer;
// HERE!!! Do the initial attachments right here
// first agent upon login is a root agent by design.

View File

@ -655,6 +655,7 @@ namespace OpenSim.Region.Framework.Scenes
public string Viewer
{
get { return m_Viewer; }
set { m_Viewer = value; }
}
#endregion