diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index dad1ab2..1dedcf1 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -672,15 +672,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
672 | AvatarWearable[] wearables) | 672 | AvatarWearable[] wearables) |
673 | : this(client, world, reginfo) | 673 | : this(client, world, reginfo) |
674 | { | 674 | { |
675 | CreateSceneViewer(); | 675 | m_appearance = new AvatarAppearance(m_uuid, wearables, visualParams); |
676 | m_appearance = new AvatarAppearance(m_uuid, wearables, visualParams); | ||
677 | |||
678 | } | 676 | } |
679 | 677 | ||
680 | public ScenePresence(IClientAPI client, Scene world, RegionInfo reginfo, AvatarAppearance appearance) | 678 | public ScenePresence(IClientAPI client, Scene world, RegionInfo reginfo, AvatarAppearance appearance) |
681 | : this(client, world, reginfo) | 679 | : this(client, world, reginfo) |
682 | { | 680 | { |
683 | CreateSceneViewer(); | ||
684 | m_appearance = appearance; | 681 | m_appearance = appearance; |
685 | } | 682 | } |
686 | 683 | ||