aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/IUserAccountService.cs
diff options
context:
space:
mode:
authorTeravus Ovares (Dan Olivares)2010-05-02 20:08:59 -0400
committerTeravus Ovares (Dan Olivares)2010-05-02 20:08:59 -0400
commitfc3e24af9c5f011546df485ec29dc198a8c8c316 (patch)
treefc271408de336b3755ee4e3be6db96b73431788b /OpenSim/Services/Interfaces/IUserAccountService.cs
parentModify README.txt to trigger new build /again/ (diff)
parentMake the IUserAccountData properly unpack the god mode data, so grid gods (diff)
downloadopensim-SC-fc3e24af9c5f011546df485ec29dc198a8c8c316.zip
opensim-SC-fc3e24af9c5f011546df485ec29dc198a8c8c316.tar.gz
opensim-SC-fc3e24af9c5f011546df485ec29dc198a8c8c316.tar.bz2
opensim-SC-fc3e24af9c5f011546df485ec29dc198a8c8c316.tar.xz
Merge branch 'master' of ssh://MyConnection/var/git/opensim
Diffstat (limited to 'OpenSim/Services/Interfaces/IUserAccountService.cs')
-rw-r--r--OpenSim/Services/Interfaces/IUserAccountService.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Services/Interfaces/IUserAccountService.cs b/OpenSim/Services/Interfaces/IUserAccountService.cs
index befd14e..e316731 100644
--- a/OpenSim/Services/Interfaces/IUserAccountService.cs
+++ b/OpenSim/Services/Interfaces/IUserAccountService.cs
@@ -84,11 +84,11 @@ namespace OpenSim.Services.Interfaces
84 if (kvp.ContainsKey("ScopeID")) 84 if (kvp.ContainsKey("ScopeID"))
85 UUID.TryParse(kvp["ScopeID"].ToString(), out ScopeID); 85 UUID.TryParse(kvp["ScopeID"].ToString(), out ScopeID);
86 if (kvp.ContainsKey("UserLevel")) 86 if (kvp.ContainsKey("UserLevel"))
87 Convert.ToInt32(kvp["UserLevel"].ToString()); 87 UserLevel = Convert.ToInt32(kvp["UserLevel"].ToString());
88 if (kvp.ContainsKey("UserFlags")) 88 if (kvp.ContainsKey("UserFlags"))
89 Convert.ToInt32(kvp["UserFlags"].ToString()); 89 UserFlags = Convert.ToInt32(kvp["UserFlags"].ToString());
90 if (kvp.ContainsKey("UserTitle")) 90 if (kvp.ContainsKey("UserTitle"))
91 Email = kvp["UserTitle"].ToString(); 91 UserTitle = kvp["UserTitle"].ToString();
92 92
93 if (kvp.ContainsKey("Created")) 93 if (kvp.ContainsKey("Created"))
94 Convert.ToInt32(kvp["Created"].ToString()); 94 Convert.ToInt32(kvp["Created"].ToString());