Make the IUserAccountData properly unpack the god mode data, so grid gods

work again
This commit is contained in:
Melanie Thielker
2010-05-03 01:50:32 +02:00
parent 0fa57cac3f
commit 175f3f992a
2 changed files with 4 additions and 4 deletions

View File

@@ -84,11 +84,11 @@ namespace OpenSim.Services.Interfaces
if (kvp.ContainsKey("ScopeID"))
UUID.TryParse(kvp["ScopeID"].ToString(), out ScopeID);
if (kvp.ContainsKey("UserLevel"))
Convert.ToInt32(kvp["UserLevel"].ToString());
UserLevel = Convert.ToInt32(kvp["UserLevel"].ToString());
if (kvp.ContainsKey("UserFlags"))
Convert.ToInt32(kvp["UserFlags"].ToString());
UserFlags = Convert.ToInt32(kvp["UserFlags"].ToString());
if (kvp.ContainsKey("UserTitle"))
Email = kvp["UserTitle"].ToString();
UserTitle = kvp["UserTitle"].ToString();
if (kvp.ContainsKey("Created"))
Convert.ToInt32(kvp["Created"].ToString());