aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs b/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
index 008d47e..743b9b4 100644
--- a/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
+++ b/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
@@ -42,10 +42,11 @@ namespace OpenSim.LocalCommunications
42 { 42 {
43 public LocalBackEndServices SandBoxServices = new LocalBackEndServices(); 43 public LocalBackEndServices SandBoxServices = new LocalBackEndServices();
44 public LocalUserServices UserServices; 44 public LocalUserServices UserServices;
45 45
46 public CommunicationsLocal(uint defaultHomeX , uint defaultHomeY) 46 public CommunicationsLocal(NetworkServersInfo serversInfo)
47 : base(serversInfo)
47 { 48 {
48 UserServices = new LocalUserServices(this , defaultHomeX, defaultHomeY); 49 UserServices = new LocalUserServices(this , serversInfo.DefaultHomeLocX, serversInfo.DefaultHomeLocY);
49 UserServices.AddPlugin("OpenGrid.Framework.Data.DB4o.dll"); 50 UserServices.AddPlugin("OpenGrid.Framework.Data.DB4o.dll");
50 UserServer = UserServices; 51 UserServer = UserServices;
51 GridServer = SandBoxServices; 52 GridServer = SandBoxServices;