aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/ScenePresence.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/ScenePresence.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
index 0e29b60..eb3597d 100644
--- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
@@ -774,7 +774,10 @@ namespace OpenSim.Region.Framework.Scenes
774 m_localId = m_scene.AllocateLocalId(); 774 m_localId = m_scene.AllocateLocalId();
775 775
776 UserAccount account = m_scene.UserAccountService.GetUserAccount(m_scene.RegionInfo.ScopeID, m_uuid); 776 UserAccount account = m_scene.UserAccountService.GetUserAccount(m_scene.RegionInfo.ScopeID, m_uuid);
777 m_userFlags = account.UserFlags; 777 if (account != null)
778 m_userFlags = account.UserFlags;
779 else
780 m_userFlags = 0;
778 781
779 if (account != null) 782 if (account != null)
780 UserLevel = account.UserLevel; 783 UserLevel = account.UserLevel;