aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/Local/LocalUserServices.cs
diff options
context:
space:
mode:
authorlbsa712007-09-24 01:18:45 +0000
committerlbsa712007-09-24 01:18:45 +0000
commitce071417d415a317c60ac889413a22eec56f1ca5 (patch)
treecfc21c8c9d05d203ef60e9c40b3262131518de08 /OpenSim/Region/Communications/Local/LocalUserServices.cs
parent* Renamed stuff on UserManagerBase to get implicit implementation of IUserSer... (diff)
downloadopensim-SC_OLD-ce071417d415a317c60ac889413a22eec56f1ca5.zip
opensim-SC_OLD-ce071417d415a317c60ac889413a22eec56f1ca5.tar.gz
opensim-SC_OLD-ce071417d415a317c60ac889413a22eec56f1ca5.tar.bz2
opensim-SC_OLD-ce071417d415a317c60ac889413a22eec56f1ca5.tar.xz
* minor renames
Diffstat (limited to 'OpenSim/Region/Communications/Local/LocalUserServices.cs')
-rw-r--r--OpenSim/Region/Communications/Local/LocalUserServices.cs20
1 files changed, 10 insertions, 10 deletions
diff --git a/OpenSim/Region/Communications/Local/LocalUserServices.cs b/OpenSim/Region/Communications/Local/LocalUserServices.cs
index 02b6e60..612f654 100644
--- a/OpenSim/Region/Communications/Local/LocalUserServices.cs
+++ b/OpenSim/Region/Communications/Local/LocalUserServices.cs
@@ -10,20 +10,20 @@ namespace OpenSim.Region.Communications.Local
10{ 10{
11 public class LocalUserServices : UserManagerBase, IUserServices 11 public class LocalUserServices : UserManagerBase, IUserServices
12 { 12 {
13 private readonly CommunicationsLocal m_Parent; 13 private readonly CommunicationsLocal m_parent;
14 14
15 private readonly NetworkServersInfo serversInfo; 15 private readonly NetworkServersInfo m_serversInfo;
16 private readonly uint defaultHomeX ; 16 private readonly uint m_defaultHomeX ;
17 private readonly uint defaultHomeY; 17 private readonly uint m_defaultHomeY;
18 18
19 19
20 public LocalUserServices(CommunicationsLocal parent, NetworkServersInfo serversInfo) 20 public LocalUserServices(CommunicationsLocal parent, NetworkServersInfo serversInfo)
21 { 21 {
22 m_Parent = parent; 22 m_parent = parent;
23 this.serversInfo = serversInfo; 23 m_serversInfo = serversInfo;
24 24
25 defaultHomeX = this.serversInfo.DefaultHomeLocX; 25 m_defaultHomeX = this.m_serversInfo.DefaultHomeLocX;
26 defaultHomeY = this.serversInfo.DefaultHomeLocY; 26 m_defaultHomeY = this.m_serversInfo.DefaultHomeLocY;
27 } 27 }
28 28
29 public UserProfileData SetupMasterUser(string firstName, string lastName) 29 public UserProfileData SetupMasterUser(string firstName, string lastName)
@@ -41,7 +41,7 @@ namespace OpenSim.Region.Communications.Local
41 } 41 }
42 42
43 Console.WriteLine("Unknown Master User. Sandbox Mode: Creating Account"); 43 Console.WriteLine("Unknown Master User. Sandbox Mode: Creating Account");
44 this.AddUserProfile(firstName, lastName, password, defaultHomeX, defaultHomeY); 44 this.AddUserProfile(firstName, lastName, password, m_defaultHomeX, m_defaultHomeY);
45 45
46 profile = base.GetUserProfile(firstName, lastName); 46 profile = base.GetUserProfile(firstName, lastName);
47 47
@@ -51,7 +51,7 @@ namespace OpenSim.Region.Communications.Local
51 } 51 }
52 else 52 else
53 { 53 {
54 m_Parent.InvenServices.CreateNewUserInventory(profile.UUID); 54 m_parent.InvenServices.CreateNewUserInventory(profile.UUID);
55 } 55 }
56 56
57 return profile; 57 return profile;